Spring Boot - Caching
Consider this method:
What is the effect of calling
@CacheEvict(cacheNames = "orders", allEntries = true)
public void clearOrdersCache() { /* clear logic */ }What is the effect of calling
clearOrdersCache()?