spring-data-redis + Jedis 프로필

2126 단어 jedis
인터넷에 비해 새 버전의 일부 필드가 이름을 바꾼 것 같습니다. 정확한지 모르겠습니다. 지적해 주십시오.

application.xml

    <!-- spring data redis -->
    <bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
        <property name="usePool" value="true"></property>
        <property name="hostName" value="${redis.host}" />
        <property name="port" value="${redis.port}" />
        <property name="password" value="${redis.pass}" />
        <property name="timeout" value="${redis.timeout}" />
        <property name="database" value="${redis.default.db}"></property>
        <constructor-arg index="0" ref="jedisPoolConfig" />
    </bean>

    <!-- jedis pool  -->
    <bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">
        <property name="maxTotal" value="${redis.maxActive}" />
        <property name="maxIdle" value="${redis.maxIdle}" />
        <property name="maxWaitMillis" value="${redis.maxWait}" />
        <!--
        <property name="testOnBorrow" value="${redis.testOnBorrow}" />
        -->
    </bean>

    <!-- Redis Template -->
    <bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">
        <property name="connectionFactory" ref="jedisConnectionFactory" />
    </bean>

인터넷 검색 결과에 비해 두 군데가 변경되었습니다. 모두jedisPoolConfig
  • maxActive가 maxTotal로 교체되었습니다
  • maxWait는 maxWaitMillis로 교체되었습니다

    redis.properties

    #redis 
    redis.host=192.168.1.105
    #redis 
    redis.port=6379
    # 
    redis.pass=1234xxxxx
    # 
    redis.default.db=0
    # 
    redis.timeout=100000
    # 
    redis.maxActive=300
    # 
    redis.maxIdle=100
    # 
    redis.maxWait=1000
    # , , 
    #DBSync.testOnBorrow=true
    
  • 좋은 웹페이지 즐겨찾기