Jedis的sadd方法实战
解决方法:
dbIndex数据库名称,key表名,sts要存入set集合中的数组数据,在表中每一个元素占一行
public static Long sadd(int dbIndex,String key,String... sts){
Jedis jedis = null;
Long sadd =0L;
try {
jedis = jedisPool.getResource();
jedis.select(dbIndex);
sadd = jedis.sadd(key, sts);
return sadd;
} catch (JedisException e) {
logger.error(e.getMessage());
} finally {
// 返还到连接池
if(jedis!=null)close(jedis);
}
return sadd;
}
其中jedisPool实例化参考:http://yayihouse.com/yayishuwu/chapter/1361
本文链接:http://www.yayihouse.com/yayishuwu/chapter/1364