spring-data-redis的使用优化

精选30+云产品,助力企业轻松上云!>>> hot3.png

1、批量删除keys

/**
批量提交
 * @param keys
 * @return
 */
public long del(final String... keys) throws CacheException {
    return (long) redisTemplate.execute(new RedisCallback<Long>() {
        public Long doInRedis(RedisConnection connection) throws DataAccessException {
            byte[][] bytes = new byte[keys.length][];
            int index = 0;
            for(String key: keys){
                bytes[index++] = stringSerializer.serialize(key);
            }
            return connection.del(bytes);
        }
    });
}
/*循环多次提交(不建议使用)
public long del(final String... keys) throws CacheException {
    return (long) redisTemplate.execute(new RedisCallback<Long>() {
        public Long doInRedis(RedisConnection connection) throws DataAccessException {
            long result = 0;
            for (int i = 0; i < keys.length; i++) {
                result += connection.del(redisTemplate.getStringSerializer().serialize(keys[i]));
            }
            return result;
        }
    });
}*/

 

2、遍历keys

/**
     * @param pattern
     * @return
     */
    public Set<String> keys(final String pattern) throws CacheException {
        return redisTemplate.execute(new RedisCallback<Set<String>>() {
            public Set<String> doInRedis(RedisConnection connection) throws DataAccessException {
                Set<String> keys = new HashSet<String>();
                Set<byte[]> set = connection.keys(stringSerializer.serialize(pattern));
                for (Iterator<byte[]> iterator = set.iterator(); iterator.hasNext();){
                    byte[] data = iterator.next();
                    keys.add(stringSerializer.deserialize(data));
                }
                return keys;
            }
        });
    }
    // 注意使用redisTemplate的方法直接调用需要关注序列化规则!
    Set<byte[]> keys = redisTemplate.keys("*");
    // Set<byte[]> keys = redisTemplate.getConnectionFactory().getConnection().keys("*".getBytes(Charset.forName("UTF8")));

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值