I try to do pipelining by List<Object> resultList = redisTemplate.executePiped(RedisCallBack<?>)
backed by Lettuce driver. When pipelining, there are similar commands which will get all elements from large list(10k elements each taking 500 bytes) by lrange(list, 0, -1)
. But some command will get empty result even that list has contents indeed on redis.
Any idea on this?