# Functions
Cacheable The simplest way to enable caching behavior for a method is to demarcate it with Cacheable and parameterize it with the name of the cache where the results would be stored.
CacheEvict Now, what would be the problem with making all methods Cacheable? The problem is size – we don't want to populate the cache with values that we don't need often.
CachePut While CacheEvict reduces the overhead of looking up entries in a large cache by removing stale and unused entries, ideally, you want to avoid evicting too much data out of the cache.
No description provided by the author
No description provided by the author
# Structs
CacheableOptions cache configurations.
CacheEvictOptions cache configurations.
CachePutOptions cache configurations.
EntryCache cache container.