caffeine-cache Questions
3
I am trying to integrate Caffeine cache into kotlin+spring boot application, however, I am getting the problem of calling the suspension function in the non-coroutine body. I get this, but I am loo...
Decennary asked 29/3, 2022 at 17:9
4
Solved
How to solve Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it to the classpath. warning in spring boot?
Anastatius asked 10/12, 2020 at 2:24
4
I have a simple sprint boot application using spring boot 1.5.11.RELEASE with @EnableCaching on the Application Configuration class.
pom.xml
<dependency>
<groupId>org.springframework.b...
Amphioxus asked 17/4, 2018 at 18:27
1
Is it possible to use Caffeine's CacheLoader::loadAll with @Cacheable annotated method with collection parameter, like
@Cacheable(cacheNames = "exampleCache", cacheManager="exampleCa...
Bounteous asked 2/5, 2022 at 12:52
1
Solved
Caffeine provides a great alternative to Guava's caching library, but can you still use just the ConcurrentLinkedHashMap class itself, or a Cache the implements concurrent, in-order iteration? It d...
Strom asked 21/3, 2022 at 18:23
2
Solved
I'm using Caffeine Cache library for Spring Cache. Is there a way to get all the cached keys?
My current application works on a near-realtime data, with the flow as :
In the Cache Updater Thre...
Tetanus asked 28/1, 2020 at 5:10
1
Solved
I'm using Caffeine cache to store data received from an external system.
LoadingCache<String, String> clientCache = Caffeine.newBuilder().expireAfterWrite(1, TimeUnit.MINUTES).build(id ->...
Borderline asked 20/5, 2020 at 11:43
1
© 2022 - 2024 — McMap. All rights reserved.