All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zc.smartcity.redis.spring.SpringJedisClusterService Maven / Gradle / Ivy

The newest version!
package com.zc.smartcity.redis.spring;

import lombok.extern.slf4j.Slf4j;
import redis.clients.jedis.HostAndPort;
import redis.clients.jedis.JedisCluster;
import redis.clients.jedis.JedisPoolConfig;

import java.util.Set;

/**
 * redis-spring-boot-starter
 * 连接Redis服务(集群)
 * @author hejianhui
 **/
@Slf4j
public class SpringJedisClusterService extends JedisCluster {


    public SpringJedisClusterService(Set nodes, JedisPoolConfig config) {
        super(nodes, config);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy