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注解。它使用起來非常方便,還可以很明顯的提升應用性能。具體的,怎么使用呢?

First, create a cache bean.

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

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

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

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

延伸閱讀

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