read


read
or learn more

Clojure Core

Jan 15, 2021 some comments

Earlier today Rich Hickey let the cat out of the bag that I’m joining the Clojure Core development team. We are excited to welcome @fogus, long-time Clojure contributor and co-author of Joy of Clojure, to the Clojure core team!— Rich Hickey (@richhickey) January 15, 2021 This is a change from my previous relationship with the […]

Announcing core.memoize v0.5.1

Dec 14, 2011

core.memoize is a new Clojure contrib library providing the following features: An underlying PluggableMemoization protocol that allows the use of customizable and swappable memoization caches that adhere to the synchronous CacheProtocol found in core.cache Memoization builders for implementations of common caching strategies, including: First-in-first-out (memo-fifo) Least-recently-used (memo-lru) Least-used (memo-lu) Time-to-live (memo-ttl) Naive cache (memo) that […]

Announcing core.cache v0.5.0

Dec 13, 2011 some comments

core.cache is a new Clojure contrib library providing the following features: An underlying CacheProtocol used as the base abstraction for implementing new synchronous caches A defcache macro for hooking your CacheProtocol implementations into the Clojure associative data capabilities. Immutable implementations of some basic caching strategies First-in-first-out (FIFOCache) Least-recently-used (LRUCache) Least-used (LUCache) Time-to-live (TTLCache) Naive cache […]

Continue