Package org.springside.modules.nosql.redis

Examples of org.springside.modules.nosql.redis.JedisTemplate.execute()


    /**
     * Query master address from sentinel.
     */
    private HostAndPort queryMasterAddress() {
      JedisTemplate sentinelTemplate = new JedisTemplate(sentinelPool);
      List<String> address = sentinelTemplate.execute(new JedisAction<List<String>>() {
        @Override
        public List<String> action(Jedis jedis) {
          return jedis.sentinelGetMasterAddrByName(masterName);
        }
      });
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.