解決redisTemplate中leftPushAll隱性bug的問題
前言
請看下面代碼:
String key = String.format("test_key:%s", System.currentTimeMillis()/1000); String key2=key+"_2"; String key3=key+"_3"; List<String> t1=new ArrayList<>(); t1.add("2"); t1.add("3"); t1.add("4"); t1.add("5"); t1.add("1"); redisTemplate.opsForList().leftPushAll(key, t1); redisTemplate.opsForList().leftPushAll(key3, t1.toArray()); redisTemplate.opsForList().leftPushAll(key2,new String[]{"dfdg","dgdaasdf","gdadfdf"});
其中,那麼,請猜測一下各個key裡面的內容,
下面開獎瞭:
結論
leftPushAll可以傳 Object… 數組,也可以傳 Collection進去。
然後實際上,我這邊傳 ArrayList這些數組是不行的,必須轉換為 [] 這種數組—就是說,api裡面的leftPushAll(Collection list)
用不瞭,具體原因還在查。。。
不過網上資料太少瞭。。
補充:java 用redisTemplate 的 Operations存取list集合
一 、存取為list類型
@RestController @RequestMapping("/test") @Slf4j public class TestController { @Autowired private RedisTemplate redisTemplate; @ApiOperation("redis-savelist") @PostMapping("/redis/save/list") public void redisSaveList() { List<Person> list = getPersonList(); //清空 while (redisTemplate.opsForList().size("oowwoo") > 0){ redisTemplate.opsForList().leftPop("oowwoo"); } //存儲 redisTemplate.opsForList().rightPushAll("oowwoo", list); //取出 List<Person> oowwoo = redisTemplate.opsForList().range("oowwoo", 0, -1); log.info(">>>>>>>>>>>>>>>list = {}", oowwoo.toString()); Iterator<Person> it = oowwoo.iterator(); while(it.hasNext()){ Person p = it.next(); log.info("person = {}", p.toString()); } } private List<Person> getPersonList() { Person p1 = new Person(); p1.setId(1L); p1.setName("張一"); p1.setAge(11); Person p2 = new Person(); p2.setId(2L); p2.setName("張二"); p2.setAge(22); Person p3 = new Person(); p3.setId(3L); p3.setName("張三"); p3.setAge(33); List<Person> list = new ArrayList<>(); list.add(p1); list.add(p2); list.add(p3); return list; } }
二 、將list轉為json對象存取
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; @Autowired private StringRedisTemplate stringRedisTemplate; //存 List<Long> businessIdList = eeFreecarriageShopService.selectBusinessIdInPromotion(); stringRedisTemplate.opsForValue().set(RedisConstants.FREECARRIAGE_BUSINESSIDLIST, JSON.toJSON(businessIdList).toString()); //取 String businessJsonArray = stringRedisTemplate.opsForValue().get(RedisConstants.FREECARRIAGE_BUSINESSIDLIST); List<Long> businessIdList = JSONObject.parseArray(businessJsonArray, Long.class);
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。
推薦閱讀:
- java 用redisTemplate 的 Operations存取list集合操作
- JSONObject用法詳解
- Springboot/Springcloud項目集成redis進行存取的過程解析
- springboot使用redis的詳細步驟
- RedisTemplate中opsForValue和opsForList方法的使用詳解