Ejemplo n.º 1
0
 /**
  * Set数据类型 读取key与otherKey集合的并集元素
  *
  * @param key
  * @param otherKey
  * @return set集合
  */
 public Set getUnionSet(String key, String otherKey) {
   setOps = redisTemplate.opsForSet();
   return (Set) setOps.union(key, otherKey);
 }