ertugrulcetin / finite-cache

finite-cache is a Clojure caching library that allows you to limit the size of a cache object.
12 stars 0 forks source link

Add support for core.cache #1

Open hkupty opened 4 years ago

hkupty commented 4 years ago

Clojure's core.cache has a set of functions to operate over caches and, more so, allows caching strategies to be composed. This library can be a nice addition to existing cache strategies like TTL and FIFO, adding cache size as another restriction/policy to cached data.

ertugrulcetin commented 4 years ago

@hkupty that would be useful, I'll be looking for implementing those protocols. Thank you so much!