特别是,我需要知道:
可以使用RedisZSetCommands.zRangeByLex吗?
最佳答案
直接通过ZRANGEBYLEX
和ZSetOperations
支持RedisZSet
仍然是一个未解决的问题。虽然可以使用RedisCallback
。
template.execute(new RedisCallback<Set<byte[]>>() {
@Override
public Set<byte[]> doInRedis(RedisConnection connection) throws DataAccessException {
return connection.zRangeByLex(key, Range.range().gte("aaaa").lte("aaaa"));
}
});
关于java - 寻找有关如何使用spring-data RedisZSetCommands.zRangeByLex的示例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33862511/