Jedis的hincrBy方法实战
解决方法:
dbindex 数据库索引,相当数据库的名称
mapName map的名字,相当表名
key map里面的key
count:增量,也可以为负数
public static String hdecrBy(int dbIndex, String keyName,String field,long count){
String value = null;
Jedis jedis = null;
try {
jedis = getJedis();
jedis.select(dbindex);
long smsCount=jedis.hincrBy(keyName,field,-count);// 扣除
} catch (Exception e) {
e.printStackTrace();
} finally {
// 返还到连接池
if(jedis!=null)close(jedis);
}
return value;
}
其中getJedis()方法参考:http://yayihouse.com/yayishuwu/chapter/1361
本文链接:http://www.yayihouse.com/yayishuwu/chapter/1363