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
The use Guava cache is currently discouraged in favour of Caffeine cache.
Prefer Caffeine over Guava's caching API
The successor to Guava's caching API is Caffeine. Its API is designed to make it a nearly drop-in replacement. It requires Java 8+, and is not available for Android or GWT/J2CL, and may have different (usually better) behavior when multiple threads attempt concurrent mutations. Its equivalent to CacheBuilder is its Caffeine class. Caffeine offers better performance, more features (including asynchronous loading), and fewer bugs.
The use Guava cache is currently discouraged in favour of Caffeine cache.
See more Guava docs](https://guava.dev/releases/snapshot-jre/api/docs/com/google/common/cache/CacheBuilder.html
The goal of this issue is to replace the use of Guava caches and replace with the corresponding Caffeine implementation.
A separate PR should be implemented for each of the following classes:
The text was updated successfully, but these errors were encountered: