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

First, create a cache bean.

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

seo優(yōu)化培訓(xùn),網(wǎng)絡(luò)推廣培訓(xùn),網(wǎng)絡(luò)營(yíng)銷培訓(xùn),SEM培訓(xùn),網(wǎng)絡(luò)優(yōu)化,在線營(yíng)銷培訓(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ò)營(yíng)銷培訓(xùn),SEM培訓(xùn),網(wǎng)絡(luò)優(yōu)化,在線營(yíng)銷培訓(xùn)

網(wǎng)友評(píng)論