redis如何循环遍历key redis list遍历

主机教程 建站分享 2年前 (2022-12-11) 183次浏览

文章摘要:redis如何循环遍历key redis list遍历

redis循环遍历key的示例: @Test public void test12(){ Jedis jedi […]

redis循环遍历key的示例:

@Test

public void test12(){

Jedis jedis = new Jedis("x.x.x.x", 6379);

jedis.auth("xxx");

long start = System.currentTimeMillis();

String cursor = "0";

do {

ScanParams scanParams = new ScanParams();

scanParams.match("hello*");

ScanResult scan = jedis.scan(cursor, scanParams);

List result = scan.getResult();

result.forEach(x->{

System.out.println(x);

});

cursor = scan.getStringCursor();

}while (!StringUtils.equals("0",cursor));

long end = System.currentTimeMillis();

System.out.println(new Double(end-start)/1000d);

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:redis如何循环遍历key redis list遍历
文章链接:http://www.7966.org/post/15911.html
转载请注明出处

喜欢 (0)