Spring Boot - Caching
Given this method in a Spring Boot service:
@CachePut(value = "items", key = "#item.id")
public Item updateItem(Item item) {
item.setName(item.getName().toUpperCase());
return item;
}
What will be cached after calling updateItem with an item named "book"?