当前位置:   article > 正文

jedisclient中带通配符模糊查找key的方法_jedis 通配符

jedis 通配符
日常开发中我们需要用到redis的key模糊查找,现在redis 有两种方法,一是keys 二是scan.在这里推荐用scan方法去做这件事,以下贴出来的代码全是在集群方式下的方法,单机的话大家可以自行摘抄
  • 1

keys方法带通配符查找key

 TreeSet<String> keys = new TreeSet<>();
        Map<String,JedisPool> clusterNodes = jedisCluster.getClusterNodes();
        for(String k : clusterNodes.keySet()) {
            JedisPool jp = clusterNodes.get(k);
            Jedis connection = jp.getResource();
            try {
                keys.addAll(connection.keys(pattern));
            } catch (Exception e) {
            } finally {
                connection.close();//用完一定要close这个链接!!!  
            }
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

scan方法带通配符查找key

 List<String> keys = new ArrayList<>();
        Map<String,JedisPool> clusterNodes = jedisCluster.getClusterNodes();
        for(String k : clusterNodes.keySet()) {
            JedisPool jp = clusterNodes.get(k);
            Jedis connection = jp.getResource();
            ScanParams scanParams = new ScanParams();
            scanParams.match(pattern);

            String cursor = ScanParams.SCAN_POINTER_START;
            boolean cycleIsFinished = false;
            while (!cycleIsFinished) {

                ScanResult<String> scanResult = connection.scan(cursor, scanParams);
                keys.addAll(scanResult.getResult());
                /*
                 * do what you need to do with the result
                 */
                cursor = scanResult.getStringCursor();
                if (cursor.equals("0")) {
                    cycleIsFinished = true;
                }
            }
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

在要重点要说一下scan方法,那个cursor 须用ScanParams类中的常量,不用的话是找不到key的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/240421
推荐阅读
相关标签
  

闽ICP备14008679号