1. Spring local cache   【Spring 本地緩存】

Spring provided cacheable annotation since 3.1. It's very super convinient to use and can obviously boost application performance.

從3.1版本開始,Spring提供了cacheable注解。它使用起來非常方便,還可以很明顯的提升應(yīng)用性能。具體的,怎么使用呢?

First, create a cache bean.

首先,創(chuàng)建緩存bean。這里,我們?cè)O(shè)置一個(gè)三秒的本地緩存(寫后3秒過期)。

seo優(yōu)化培訓(xùn),網(wǎng)絡(luò)推廣培訓(xùn),網(wǎng)絡(luò)營銷培訓(xùn),SEM培訓(xùn),網(wǎng)絡(luò)優(yōu)化,在線營銷培訓(xùn)

@Bean
public Cache ephemeralCache() {
    return new ConcurrentMapCache(EPHEMERAL_CACHE, CacheBuilder.newBuilder()
            .expireAfterWrite(3, TimeUnit.SECONDS)
            .build().asMap(), false);
}

seo優(yōu)化培訓(xùn),網(wǎng)絡(luò)推廣培訓(xùn),網(wǎng)絡(luò)營銷培訓(xùn),SEM培訓(xùn),網(wǎng)絡(luò)優(yōu)化,在線營銷培訓(xùn)

延伸閱讀

學(xué)習(xí)是年輕人改變自己的最好方式-Java培訓(xùn),做最負(fù)責(zé)任的教育,學(xué)習(xí)改變命運(yùn),軟件學(xué)習(xí),再就業(yè),大學(xué)生如何就業(yè),幫大學(xué)生找到好工作,lphotoshop培訓(xùn),電腦培訓(xùn),電腦維修培訓(xùn),移動(dòng)軟件開發(fā)培訓(xùn),網(wǎng)站設(shè)計(jì)培訓(xùn),網(wǎng)站建設(shè)培訓(xùn)學(xué)習(xí)是年輕人改變自己的最好方式