在程序中,緩存是一個高速數據存儲層,其中存儲了數據子集,且一般是短暫性存儲,這樣往後再次請求此數據時,速度要比訪問數據的主存儲位置快。經過緩存,能夠高效地重用以前檢索或計算的數據。java
在Java應用中,對於訪問頻率高,更新少的數據,一般的方案是將這類數據加入緩存中,相對從數據庫中讀取,讀緩存效率會有很大提高。數據庫
在集羣環境下,經常使用的分佈式緩存有Redis、Memcached等。但在某些業務場景上,可能不須要去搭建一套複雜的分佈式緩存系統,在單機環境下,一般是會但願使用內部的緩存(LocalCache)。緩存
使用Map來實現一個簡單的緩存功能安全
MapCacheDemo.java數據結構
package me.xueyao.cache.java; import java.lang.ref.SoftReference; import java.util.Optional; import java.util.concurrent.ConcurrentHashMap; /** * @author simon * 用map實現一個簡單的緩存功能 */ public class MapCacheDemo { /** * 使用 ConcurrentHashMap,線程安全的要求。 * 我使用SoftReference <Object> 做爲映射值,由於軟引用能夠保證在拋出OutOfMemory以前,若是缺乏內存,將刪除引用的對象。 * 在構造函數中,我建立了一個守護程序線程,每5秒掃描一次並清理過時的對象。 */ private static final int CLEAN_UP_PERIOD_IN_SEC = 5; private final ConcurrentHashMap<String, SoftReference<CacheObject>> cache = new ConcurrentHashMap<>(); public MapCacheDemo() { Thread cleanerThread = new Thread(() -> { while (!Thread.currentThread().isInterrupted()) { try { Thread.sleep(CLEAN_UP_PERIOD_IN_SEC * 1000); cache.entrySet().removeIf(entry -> Optional.ofNullable(entry.getValue()) .map(SoftReference::get) .map(CacheObject::isExpired) .orElse(false)); } catch (InterruptedException e) { Thread.currentThread().interrupt(); } } }); cleanerThread.setDaemon(true); cleanerThread.start(); } public void add(String key, Object value, long periodInMillis) { if (key == null) { return; } if (value == null) { cache.remove(key); } else { long expiryTime = System.currentTimeMillis() + periodInMillis; cache.put(key, new SoftReference<>(new CacheObject(value, expiryTime))); } } public void remove(String key) { cache.remove(key); } public Object get(String key) { return Optional.ofNullable(cache.get(key)).map(SoftReference::get).filter(cacheObject -> !cacheObject.isExpired()).map(CacheObject::getValue).orElse(null); } public void clear() { cache.clear(); } public long size() { return cache.entrySet().stream().filter(entry -> Optional.ofNullable(entry.getValue()).map(SoftReference::get).map(cacheObject -> !cacheObject.isExpired()).orElse(false)).count(); } /** * 緩存對象value */ private static class CacheObject { private Object value; private long expiryTime; private CacheObject(Object value, long expiryTime) { this.value = value; this.expiryTime = expiryTime; } boolean isExpired() { return System.currentTimeMillis() > expiryTime; } public Object getValue() { return value; } public void setValue(Object value) { this.value = value; } } }
代碼測試類MapCacheDemoTests.java分佈式
package me.xueyao.cache.java; public class MapCacheDemoTests { public static void main(String[] args) throws InterruptedException { MapCacheDemo mapCacheDemo = new MapCacheDemo(); mapCacheDemo.add("uid_10001", "{1}", 5 * 1000); mapCacheDemo.add("uid_10002", "{2}", 5 * 1000); mapCacheDemo.add("uid_10003", "{3}", 5 * 1000); System.out.println("從緩存中取出值:" + mapCacheDemo.get("uid_10001")); Thread.sleep(5000L); System.out.println("5秒鐘事後"); System.out.println("從緩存中取出值:" + mapCacheDemo.get("uid_10001")); // 5秒後數據自動清除了~ } }