redis如何循环遍历key
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);
}
声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。
本文链接:http://news.ew35.com/