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ò)期)。
@Bean public Cache ephemeralCache() { return new ConcurrentMapCache(EPHEMERAL_CACHE, CacheBuilder.newBuilder() .expireAfterWrite(3, TimeUnit.SECONDS) .build().asMap(), false); }