Package org.springframework.data.redis.support.collections

Examples of org.springframework.data.redis.support.collections.DefaultRedisZSet


  public RedisZSetTests(ObjectFactory<Object> factory, RedisTemplate template) {
    super(factory, template);
  }

  RedisStore copyStore(RedisStore store) {
    return new DefaultRedisZSet(store.getKey().toString(), store.getOperations());
  }
View Full Code Here


    return new DefaultRedisZSet(store.getKey().toString(), store.getOperations());
  }

  AbstractRedisCollection<Object> createCollection() {
    String redisName = getClass().getName();
    return new DefaultRedisZSet(redisName, template);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.redis.support.collections.DefaultRedisZSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.