一.Ehcache簡介
EhCache是一個純Java的進程內緩存框架,具備以下特色:
1. 快速簡單,很是容易和應用集成。
2.支持多種緩存策略 。
3. 緩存數據有兩級:內存和磁盤,所以無需擔憂容量問題 。
4. 緩存數據會在虛擬機重啓的過程當中寫入磁盤 。
5. 能夠經過RMI、可插入API等方式進行分佈式緩存。
6. 具備緩存和緩存管理器的偵聽接口 。
7. 支持多緩存管理器實例,以及一個實例的多個緩存區域 等特色。
二.Ehcache配置的相關參數
Ehcache的配置很靈活,官方提供的配置方式有好幾種,你能夠經過聲明配置、在xml中配置、在程序裏配置或者調用構造方法時傳入不一樣的參數。下面以最經常使用的XML配置爲例說下配置的相關參數的意義,ehcache.xml是最多見的一個文件,ehcache通常會經過CacheManager從classpath加載該文件完成Cache的實例化。
1.ehcache.xml中的配置信息
ehcache.xml片斷:java
<ehcache> <diskStore path="java.io.tmpdir"/> <defaultCache name="name" maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" maxElementsOnDisk="10000000" diskPersistent="false" diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU" /> </ehcache>
2.Cache中經常使用參數的具體意義
(1)name:Cache的惟一標識。
(2)maxElementsInMemory:內存中最大緩存對象數。
(3)eternal:Element是否永久有效,一旦設置true,timeout將不起做用。
(4)timeToIdleSeconds:設置Element在失效前的容許閒置時間。僅當element不是永久有效時使用,可選屬性,默認值是0,也就是可閒置時間無窮大。
(5)timeToLiveSeconds:設置Element在失效前容許存活時間。最大時間介於建立時間和失效時間之間。僅當element不是永久有效時使用,默認是0.,也就是element存活時間無窮大。
(6)overflowToDisk:配置此屬性,當內存中Element數量達到maxElementsInMemory時,Ehcache將會Element寫到磁盤中。
(7)maxElementsOnDisk:磁盤中最大緩存對象數,如果0表示無窮大。
(8) memoryStoreEvictionPolicy:當達到maxElementsInMemory限制時,Ehcache將會根據指定的策略去清理緩存中的內容。默認策略是LRU(最近最少使用),你也能夠設置爲FIFO(先進先出)或是LFU(較少使用)
三.Spring和Ehcache的集成
1.ehcache.xmlspring
2.beans.xml的配置緩存
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation"> <value>classpath:ehcache.xml</value> </property> </bean> <bean id="levelOneCache" class="org.springframework.cache.ehcache.EhCacheFactoryBean"> <property name="cacheManager"> <ref local="cacheManager" /> </property> <property name="cacheName"> <value>configCache</value> </property> </bean>
3.測試類app
輸出以下:框架
cacheObject[name:test],沒法從緩存中取到 cacheObject[name:test],從緩存中取到 cacheObject[name:test],從緩存中取到 cacheObject[name:test],從緩存中取到 cacheObject[name:test],從緩存中取到
四.利用Spring AOP和Ehcache實現線程級方法緩存
在複雜的業務邏輯或在一次計算中需屢次調用同一個DAO或遠程服務,在這種狀況下,都可對計算結果緩存起來,不但能夠減小了沒必要要的調用次數,還同時能夠提升系統運算性能。下面以緩存一個service爲例說明一下其用法。
1.TestService接口分佈式
2.TestServiceImpl實現類性能
3.攔截器的實現測試
4.Bean的配置this
5.測試方法spa
其輸出結果以下: