Hi folks, does anybody know of a way to get Spring...
# spring
c
Hi folks, does anybody know of a way to get Spring cache to work with co-routines? I added the dependency 
implementation '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:
Copy code
@Repository
class SomeRepository {
    @Cacheable("items")
    suspend fun loadSomeItem(id: String): SomeItem { ... }
}