小編給大家分享一下SpringBoot加入Guava Cache實(shí)現(xiàn)本地緩存的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)建站于2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元博州做網(wǎng)站,已為上家服務(wù),為博州各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18980820575
在pom.xml中加入guava依賴
com.google.guava guava 18.0
創(chuàng)建一個(gè)CacheService,方便調(diào)用
public interface CacheService { //存 void setCommonCache(String key,Object value); //取 Object getCommonCache(String key); }
其實(shí)現(xiàn)類
import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.wu.service.CacheService; import org.springframework.stereotype.Service; import javax.annotation.PostConstruct; import java.util.concurrent.TimeUnit; @Service public class CacheServiceImpl implements CacheService { private CachecommonCache=null; @PostConstruct//代理此bean時(shí)會(huì)首先執(zhí)行該初始化方法 public void init(){ commonCache= CacheBuilder.newBuilder() //設(shè)置緩存容器的初始化容量為10(可以存10個(gè)鍵值對(duì)) .initialCapacity(10) //最大緩存容量是100,超過100后會(huì)安裝LRU策略-最近最少使用,具體百度-移除緩存項(xiàng) .maximumSize(100) //設(shè)置寫入緩存后1分鐘后過期 .expireAfterWrite(60, TimeUnit.SECONDS).build(); } @Override public void setCommonCache(String key, Object value) { commonCache.put(key,value); } @Override public Object getCommonCache(String key) { return commonCache.getIfPresent(key); } }
以上是“SpringBoot加入Guava Cache實(shí)現(xiàn)本地緩存的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!