標籤:smi 大數 mil soft red 最小 max schema aop
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd "><!-- 串連池配置 --><bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig"><!-- 最大串連數 --><property name="maxTotal" value="30" /><!-- 最大空閑串連數 --><property name="maxIdle" value="10" /><!-- 每次釋放串連的最大數目 --><property name="numTestsPerEvictionRun" value="1024" /><!-- 釋放串連的掃描間隔(毫秒) --><property name="timeBetweenEvictionRunsMillis" value="30000" /><!-- 串連最小空閑時間 --><property name="minEvictableIdleTimeMillis" value="1800000" /><!-- 串連空閑多久後釋放, 當空閑時間>該值 且 空閑串連>最大空閑串連數 時直接釋放 --><property name="softMinEvictableIdleTimeMillis" value="10000" /><!-- 擷取串連時的最大等待毫秒數,小於零:阻塞不確定的時間,預設-1 --><property name="maxWaitMillis" value="1500" /><!-- 在擷取串連的時候檢查有效性, 預設false --><property name="testOnBorrow" value="true" /><!-- 在空閑時檢查有效性, 預設false --><property name="testWhileIdle" value="true" /><!-- 串連耗盡時是否阻塞, false報異常,ture阻塞直到逾時, 預設true --><property name="blockWhenExhausted" value="false" /></bean><!-- redis單機 通過串連池 --><bean id="jedisPool" class="redis.clients.jedis.JedisPool" destroy-method="close"><constructor-arg name="poolConfig" ref="jedisPoolConfig"/><constructor-arg name="host" value="192.168.50.17"/><constructor-arg name="port" value="6379"/></bean></beans>
Spring整合redis設定檔詳解