Closed markcdev101 closed 1 month ago
for deleting entries in the cache
@CacheEvict(value = "recipes", key = "#id")
For adding entries in the cache
@Cacheable(value = "recipes", key = "#id")
Skipping the last requirement of unit testing the cache, as it needs Redis embedded. Will look for a workaround in the future.,
Description: Use Redis to cache recipe retrieval. Store recipes in cache for faster access on subsequent requests.
Spring Boot Concepts:
Guide:
Acceptance Criteria: