Is there a multiplatform cache library like caffei...
# getting-started
a
Is there a multiplatform cache library like caffeine or guava's cache on the jvm?
d
This is the only one I know of. https://github.com/touchlab/Stately#lru-cache
a
Thanks, will keep a look out for updates
p
If you are using Spring you can use the @cachable annotations which just delegate to the caching implementation of your choice, eg ehcache. Or just use ehcache directly though Spring makes things a lot easier.