<Is redis pipelining guarantees repsonse order in ...
# stackoverflow
u
Is redis pipelining guarantees repsonse order in cluster mode? I use Spring Data Redis and Redis in cluster-mode. I want to check some parameters for existing. val results = redisTemplate.executePipelined { connection -> keyParams.forEach { params-> val key = generateKey(params) connection.setCommands().sIsMember(key, valueToCheck(params)) } null } return results .map { it as Boolean } So, several questions: Is is correct for cluster mode if keys store in different nodes? Is redis...