Spring整合redis設定檔詳解

來源:互聯網
上載者:User

標籤: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設定檔詳解

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.