1. Ehcachejava
EHCache是來自sourceforge(http://ehcache.sourceforge.net/)的開源項目,也是純Java實現的簡單、快速的Cache組件。EHCache支持內存和磁盤的緩存,支持LRU、LFU和FIFO多種淘汰算法;redis
Ehcache配置:算法
在mybatis配置文件裏面啓用緩存spring
<settings> <setting name="cacheEnabled" value="true" /> </settings>
2. 創建ehcache.xml文件緩存
<?xml version="1.0" encoding="UTF-8"?> <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > <defaultCache overflowToDisk="true" eternal="false"/> <diskStore path="D:/cache" /> <cache name="zzugxy" overflowToDisk="true" eternal="false" timeToIdleSeconds="300" timeToLiveSeconds="600" maxElementsInMemory="1000" diskPersistent="true" diskExpiryThreadIntervalSeconds="300" memoryStoreEvictionPolicy="LRU" /> </ehcache>
<diskstore>是指定緩存地點 能夠指定爲java.io.tmpdirmybatis
<cache/>參數詳情:app
name:Cache的惟一標識 測試
maxElementsInMemory:內存中最大緩存對象數 spa
maxElementsOnDisk:磁盤中最大緩存對象數,如果0表示無窮大 .net
eternal:Element是否永久有效,一但設置了,timeout將不起做用
overflowToDisk:配置此屬性,當內存中Element數量達到maxElementsInMemory時,Ehcache將會Element寫到磁盤中
timeToIdleSeconds:設置Element在失效前的容許閒置時間。僅當element不是永久有效時使用,可選屬性,默認值是0,也就是可閒置時間無窮大
timeToLiveSeconds:設置Element在失效前容許存活時間。最大時間介於建立時間和失效時間之間。僅當element不是永久有效時使用,默認是0.,也就是element存活時間無窮大
diskPersistent:是否緩存虛擬機重啓期數據
diskExpiryThreadIntervalSeconds:磁盤失效線程運行時間間隔,默認是120秒
diskSpoolBufferSizeMB:這個參數設置DiskStore(磁盤緩存)的緩存區大小。默認是30MB。每一個Cache都應該有本身的一個緩衝區
memoryStoreEvictionPolicy:當達到maxElementsInMemory限制時,Ehcache將會根據指定的策略去清理內存。默認策略是LRU(最近最少使用)。你能夠設置爲FIFO(先進先出)或是LFU(較少使用)
3. 在Spring配置文件裏面寫入ehcache的bean,引入ehcache的xml文件
<bean id="ehCacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath:ehcache.xml" /> </bean>
4. 在須要作緩存的Mapper裏面加入使用緩存的標識
<cache type="org.mybatis.caches.ehcache.LoggingEhcache" > <property name="timeToIdleSeconds" value="3600"/> <property name="timeToLiveSeconds" value="3600"/> <property name="maxEntriesLocalHeap" value="1000"/> <property name="maxEntriesLocalDisk" value="10000000"/> <property name="memoryStoreEvictionPolicy" value="LRU"/> </cache>
2. Redis
使用redis做爲緩存,目前沒有專門的Jar能夠實現,須要手動寫代碼實現mybatis裏面
的Cache接口,在執行語句的時候將獲取到的結果對象放進redis裏面;結果對象和key都須要序列化
Redis配置步驟:
在mybatis配置文件裏面啓用緩存
<settings> <setting name="cacheEnabled" value="true" /> </settings>
2. 在須要啓用緩存的Mapper裏面配置
<cache eviction="LRU" type="com.guoxin.module.datastat.dao.MybatisRedisCache" />
其中type就是咱們實現Cache接口的類
3. 剩下的就是實現Cache接口了
3. 二級緩存補充說明
映射語句文件中的全部select語句將會被緩存。
映射語句文件中的全部insert,update和delete語句會刷新緩存。
緩存會使用Least Recently Used(LRU,最近最少使用的)算法來收回。
緩存會根據指定的時間間隔來刷新。
緩存會存儲1024個對象
4. 測試結果
使用ehcache,第一次獲取數據用時7454ms,穩定以後每次獲取數據都在100ms左右;
使用redis,第一次獲取數據用時7625ms,穩定以後每次獲取數據都在100ms左右;可是出現過一次15000ms的時間,仍是在有緩存以後,不知道這個是從哪裏來的,猜想是讀寫鎖致使的