cryptomator / cryptofs

Java Filesystem Provider with integrated encryption
GNU Affero General Public License v3.0
94 stars 35 forks source link

Replace Guava Cache with Caffeine #162

Closed infeo closed 1 year ago

infeo commented 1 year ago

Caffeine is a modern cache-library, which is based on Guavas caches API but with improvements and (according to themself) a near optimal cache eviction strategy.

The first step by defining it as dependency was made in #161. We should replace all remaining occurrences of the Guavas CacheBuilder with the cache builder provided by Caffeine.