這篇“SpringBoot怎么加入Guava Cache實(shí)現(xiàn)本地緩存”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“SpringBoot怎么加入Guava Cache實(shí)現(xiàn)本地緩存”文章吧。
創(chuàng)新互聯(lián)專注于梁河企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,商城網(wǎng)站定制開(kāi)發(fā)。梁河網(wǎng)站建設(shè)公司,為梁河等地區(qū)提供建站服務(wù)。全流程按需開(kāi)發(fā)網(wǎng)站,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)在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,超過(guò)100后會(huì)安裝LRU策略-最近最少使用,具體百度-移除緩存項(xiàng) .maximumSize(100) //設(shè)置寫入緩存后1分鐘后過(guò)期 .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); } }
以上就是關(guān)于“SpringBoot怎么加入Guava Cache實(shí)現(xiàn)本地緩存”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。