Redis初始化

本文详细介绍了Redis的初始化过程,包括如何配置common.properties文件,确保 Redis 服务的正确启动。通过理解这些设置,你可以更好地管理和优化你的Redis实例。
摘要由CSDN通过智能技术生成

import com.config.data.RedisNode;
import com.utils.PropertiesUtils;
import redis.clients.jedis.*;
import com.cache.redis.connection.*;

import java.util.*;


public final  class RedisManager {
   

    public static final RedisManager I = new RedisManager();

    private final RedisConnectionFactory factory = new RedisConnectionFactory();
    List<RedisNode> nodes;
    JedisClient jedisClient;
    public RedisManager(){
        init();
    }
    public void init() {

        /**
         *
         maxTotal:8,
         maxIdle:4,
         minIdle:1,
         lifo:true,
         fairness:false,
         maxWaitMillis:5000,
         minEvictableIdleTimeMillis:300000,
         softMinEvictableIdleTimeMillis:1800000,
         numTestsPerEvictionRun:3,
         testOnCreate:false,
         testOnBorrow:false,
         testOnReturn:false,
         testWhileIdle:false,
         timeBetweenEvictionRunsMillis:60000,
         blockWhenExhausted:true,
         jmxEnabled:false,
         jmxNamePrefix:pool,
         jmxNameBase:pool

         */
        JedisPoolConfig config=new JedisPoolConfig();
        config.setMaxTotal(Integer.valueOf(PropertiesUtils.getproperties("redis.pool.maxActive","10")));
        config.setMaxIdle(Integer.valueOf(PropertiesUtils.getproperties("redis.pool.maxIdle","10")));
        config.setMaxWaitMillis(Integer.valueOf(PropertiesUtils.getproperties(&#
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值