redisTemplate 模糊查询

本文探讨了在处理大量Redis键时,如何避免使用`keys`命令导致的阻塞问题,转而采用`scan`命令进行模糊查询。虽然`scan`能优化内存加载,但无法解决CPU竞争。文中提供的Java代码示例展示了如何实施模糊查询并删除操作,同时提醒注意`scan`的局限性。
摘要由CSDN通过智能技术生成

redisTemplate 模糊查询

场景

线上有百万级别的 key , 要求模糊查询,并删除

模糊查询

想当然就是 keys, 不过 大量的 key 加载会阻塞 redis, 影响其他业务调用 , 所以选择 scan

public Set<String> fuzzySearch(String pattern) {
    Set<String> keys = new HashSet<>();
    Cursor<byte[]> cursor = null;
    try {
        cursor = (Cursor) redisTemplate.execute((RedisCallback) redisConnection -> redisConnection.scan(ScanOptions.scanOptions().match(pattern).count(10000).build()));
        if (cursor==null || cursor.getCursorId()==0){
            return Collections.emptySet();
        }
        while (cursor.hasNext()) {
            keys.add(new String(cursor.next()));
        }
    } catch (Exception e) {
       
    } finally {
        if (cursor != null) {
            try {
                cursor.close();
            } catch (IOException e) {
              //....
            }
        }
    }
    return keys;
}

scan 并不能解决CUP竞争问题,只是优化内存加载问题!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值