java利用RedisTemplate实现zset条件查询

直接上代码在做解释

Cursor> cursor = zSetOperations.scan(key,ScanOptions.NONE);
            while (cursor.hasNext()) {
                ZSetOperations.TypedTuple item = cursor.next();
                if (item.getScore()==0) {
                    hotelId.add(Integer.parseInt((String) item.getValue()));
                    logger.info(item.getValue() + ":" + item.getScore());
                }
            } 
  

上面代码很简单利用RedisTemplate的自带的scan方法查询所有考虑到redis实际性能较好所以对于一些数据可以采用此类方法

原生方法也可以ZRANGEBYSCORE key min max使用

ZRANGEBYSCORE zset (1 5

你可能感兴趣的:(java利用RedisTemplate实现zset条件查询)