概述
jedis的hscan方法使用方法(java)
解决方法:
1.hscan核心方法:
public Map<String, Integer> getAll(String hashKey, int iterSize) {
Jedis jedis = null;
Map<String, Integer> mapList=new HashMap<String, Integer>();
try {
int cursor = 0;
ScanParams scanParams = new ScanParams().match("*").count(iterSize > 0 ? iterSize : 1000);
ScanResult<Entry<String, String>> scanResult;
jedis = Redis.getJedis();
jedis.select(0);
do {
http://www.yayihouse.com/yayishuwu/chapter/1821
} while (cursor > 0);
}catch (Exception e) {
logger.error(e.getLocalizedMessage(), e);
return null;
}finally{
// 返还到连接池
if (jedis != null) {
jedis.close();
}
}
return mapList;
}
2.使用方法
Map<String, Integer> delHash = getAll("rd_sms_global_blacklist", 1000);
最后
以上就是寒冷自行车为你收集整理的jedis的hscan方法使用方法的全部内容,希望文章能够帮你解决jedis的hscan方法使用方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复