快取初見——EhCache
Ehcache簡介
Ehcache簡單使用
首先需要一個配置檔案
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
<!-- 指定一個檔案目錄,當EhCache把資料寫到硬碟上時,將把資料寫到這個檔案目錄下 -->
<diskStore path="java.io.tmpdir"/>
<!--
cache元素的屬性:
name:快取名稱
maxElementsInMemory:記憶體中最大快取物件數
maxElementsOnDisk:硬碟中最大快取物件數,若是0表示無窮大
eternal:true表示物件永不過期,此時會忽略timeToIdleSeconds和timeToLiveSeconds屬性,預設為false
overflowToDisk:true表示當記憶體快取的物件數目達到了maxElementsInMemory界限後,會把溢位的物件寫到
硬碟快取中。注意:如果快取的物件要寫入到硬碟中的話,則該物件必須實現了Serializable介面才行。
diskSpoolBufferSizeMB:磁碟快取區大小,預設為30MB。每個Cache都應該有自己的一個快取區。
diskPersistent:是否快取虛擬機器重啟期資料
diskExpiryThreadIntervalSeconds:磁碟失效執行緒執行時間間隔,預設為120秒
timeToIdleSeconds: 設定允許物件處於空閒狀態的最長時間,以秒為單位。當物件自從最近一次被訪問後,
如果處於空閒狀態的時間超過了timeToIdleSeconds屬性值,這個物件就會過期,EHCache將把它從快取中清空。
只有當eternal屬性為false,該屬性才有效。如果該屬性值為0,則表示物件可以無限期地處於空閒狀態
timeToLiveSeconds:設定物件允許存在於快取中的最長時間,以秒為單位。當物件自從被存放到快取中後,如果處於快取
中的時間超過了 timeToLiveSeconds屬性值,這個物件就會過期,EHCache將把它從快取中清除。只有當eternal屬性為false,
該屬性才有效。如果該屬性值為0,則表示物件可以無限期地存在於快取中。timeToLiveSeconds必須大於timeToIdleSeconds屬性,才有意義
memoryStoreEvictionPolicy:當達到maxElementsInMemory限制時,Ehcache將會根據指定的策略去清理記憶體。
可選策略有:LRU(最近最少使用,預設策略)、FIFO(先進先出)、LFU(最少訪問次數)。
-->
<!-- 設定快取的預設資料過期策略 -->
<defaultCache
maxElementsInMemory="10000"
eternal="false"
overflowToDisk="true"
timeToIdleSeconds="10"
timeToLiveSeconds="20"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"/>
<cache name="simpleCache"
maxElementsInMemory="5"
eternal="false"
overflowToDisk="true"
timeToIdleSeconds="10"
timeToLiveSeconds="20"/>
</ehcache>
簡單使用:
public static void main(String[] args) {
CacheManager cacheManager = new CacheManager();
Cache cache = cacheManager.getCache("simpleCache");
for (int i = 0; i < 10; i++) {
cache.put(new Element("key"+i, "value"+i));
System.out.println("key"+i+ "=" +"value"+i);
System.out.println(cache.getKeys());
}
System.out.println(cache.get("key1"));
cacheManager.shutdown();
}
相關文章
- Java快取EhcacheJava快取
- Ehcache快取配置快取
- EhCache快取使用教程快取
- Mybatis 整合 ehcache快取MyBatis快取
- EhCache 分散式快取/快取叢集分散式快取
- Spring 整合 Ehcache 管理快取詳解Spring快取
- Java 開源分散式快取框架EhcacheJava分散式快取框架
- ehcache memcache redis 三大快取男高音Redis快取
- 另一種快取,Spring Boot 整合 Ehcache快取Spring Boot
- Spring Boot:簡單使用EhCache快取框架Spring Boot快取框架
- Ehcache 整合Spring 使用頁面、物件快取Spring物件快取
- 修改Ehcache快取中取到的值,快取中的值也被修改了快取
- Spring Boot基礎教程:EhCache快取的使用Spring Boot快取
- SpringBoot中Shiro快取使用Redis、EhcacheSpring Boot快取Redis
- 使用EHCACHE三步搞定SPRING BOOT 快取Spring Boot快取
- Spring Boot Oauth2快取UserDetails到EhcacheSpring BootOAuth快取AI
- mybatis二級快取應用及與ehcache整合MyBatis快取
- Spring中整合Ehcache使用頁面、物件快取Spring物件快取
- Springboot應用快取實踐之:Ehcache加持Spring Boot快取
- Java快取機制:Ehcache與Guava Cache的比較Java快取Guava
- JAVA中使用最廣泛的本地快取?Ehcache的自信從何而來2 —— Ehcache的各種專案整合與使用初體驗Java快取
- 初識Http快取君HTTP快取
- Redis 面試常見問題———快取雪崩、快取擊穿以及快取穿透Redis面試快取穿透
- SpringBoot2 整合Ehcache元件,輕量級快取管理Spring Boot元件快取
- Spring Boot 2.x基礎教程:EhCache快取的使用Spring Boot快取
- Spring boot學習(八)Spring boot配置ehcache快取框架Spring Boot快取框架
- Ehcache介紹及整合Spring實現快取記憶體Spring快取記憶體
- EhCache快取系統在整合環境中的使用詳解快取
- [求助] 關於ehcache叢集快取同步資料的問題快取
- Spring Boot 2.x基礎教程:使用EhCache快取叢集Spring Boot快取
- Spring Boot 揭祕與實戰(二) 資料快取篇 - EhCacheSpring Boot快取
- 單機快取JCS Ehcache OSCache Cache4J測試比較快取
- JAVA中使用最廣泛的本地快取?Ehcache的自信從何而來3 —— 本地快取變身分散式叢集快取,打破本地快取天花板Java快取分散式
- PWA常見的快取策略快取
- spring和ehcache整合,實現基於註解的快取實現Spring快取
- Spring+EhCache快取例項(詳細講解+原始碼下載)Spring快取原始碼
- Redis常見問題(快取雪崩)Redis快取
- JAVA中使用最廣泛的本地快取?Ehcache的自信從何而來 —— 感受來自Ehcache的強大實力Java快取