use of info.xiancloud.core.support.cache.CacheConfigBean in project xian by happyyangyuan.
the class Redis method initRedis.
@Deprecated
public static synchronized void initRedis(String url, String password, int dbIndex) {
CacheConfigBean cacheConfigBean = new CacheConfigBean(url, password, dbIndex);
initRedis(cacheConfigBean.getHost(), cacheConfigBean.getPort(), cacheConfigBean.getPassword(), cacheConfigBean.getDbIndex(), jedisPoolConfig);
}
Aggregations