You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Caffeine is based on ConcurrentHashMap which uses locks when writing and therefore at least the write operations can lead to blocking the current thread. Therefore from my understanding it should be wrapped in blocking instead of delay.
Caffeine is based on ConcurrentHashMap which uses locks when writing and therefore at least the write operations can lead to blocking the current thread. Therefore from my understanding it should be wrapped in
blocking
instead ofdelay
.https://github.com/cb372/scalacache/blob/master/modules/caffeine/src/main/scala/scalacache/caffeine/CaffeineCache.scala
The text was updated successfully, but these errors were encountered: