I am trying to implement something like this Spring boot populating cache used by findById method with findAll method
but with R2DBC. However, it does not appear to work as I am returning a Mono.
@Cacheable("stores",key = "#storeId")
Mono<Store> findById(int storeId);
The way I determine it is looking at the general_log of the database and find that it's still performing the query