When configuring a CacheManager in Spring Boot, the _____ property can be used to set the TTL values for cache entries.

  • cacheExpiry
  • evictionTimeout
  • expireAfterWrite
  • timeToLive
When configuring a CacheManager in Spring Boot, the expireAfterWrite property can be used to set the time-to-live (TTL) values for cache entries. This property determines how long cache entries remain valid before they are considered expired and potentially removed from the cache. It's essential for controlling cache behavior.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *