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秒過期)。
@Bean public Cache ephemeralCache() { return new ConcurrentMapCache(EPHEMERAL_CACHE, CacheBuilder.newBuilder() .expireAfterWrite(3, TimeUnit.SECONDS) .build().asMap(), false); }
延伸閱讀
學習是年輕人改變自己的最好方式