0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

プロダクションではConcurrentMapCacheManagerを使わない方が良い

Posted at

Spring Bootは標準でキャッシュの機構を持つ。使い方は非常に簡単で:

@Configuration
@EnableCaching
class CacheConfig {

  @Bean
  fun cacheManager(): CacheManager {
    return ConcurrentMapCacheManager("cache")
  }
}

とCacheManagerの実装をDIできるようにし:

@Cacheable(value = ["cache"], key = "#address")
fun doGeocoding(address: String): Point {
  // ...
}

とすれば、keyに指定した変数名をキーに戻り値をキャッシュしてくれる。

すげー簡単。なんだけど、簡単に使えるCacheManagerの実装であるConcurrentMapCacheManagerは https://stackoverflow.com/a/36774048 みたいな扱いとのこと。なので、このStack Overflowの記事の質問である「キャッシュのサイズを制限できる?」に対してはノーということらしい。

なので回答にも書いてあるようなElCacheやGuavaのようなちゃんとしたものを使うのが良いらしい(未確認)。他は何なんですかね、Caffeineとか?

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?