Christopher
06/15/2020, 8:22 AMimplementation 'org.springframework.boot:spring-boot-starter-cache'
spring boot version "2.3.0.RELEASE"
on my application I added the annotation @EnableCaching
but out of the box it does not seem to work on suspending function, example:
@Repository
class SomeRepository {
@Cacheable("items")
suspend fun loadSomeItem(id: String): SomeItem { ... }
}