public RedisZSet<E> unionAndStore(Collection<? extends RedisZSet<?>> sets, String destKey) {
   boundZSetOps.unionAndStore(CollectionUtils.extractKeys(sets), destKey);
   return new DefaultRedisZSet<E>(
       boundZSetOps.getOperations().boundZSetOps(destKey), getDefaultScore());
 }
 public RedisZSet<E> unionAndStore(RedisZSet<?> set, String destKey) {
   boundZSetOps.unionAndStore(set.getKey(), destKey);
   return new DefaultRedisZSet<E>(
       boundZSetOps.getOperations().boundZSetOps(destKey), getDefaultScore());
 }