core.cache is a 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.
Implementations of some basic caching strategies
Implementation of an efficient buffer replacement policy based on the low inter-reference recency set algorithm (LIRSCache) described in the LIRS paper
Factory functions for each existing cache type
Caches are generally immutable and should be used in conjunction with Clojure's state management, such as atom
. SoftCache is the exception here, built on top of mutable Java collections, but it can be treated as an immutable cache as well.
core.cache is based on an old library named Clache that has been thoroughly deprecated.
Latest stable release: 0.7.1
Leiningen dependency information:
[org.clojure/core.cache "0.7.1"]
Maven dependency information:
<dependency>
<groupId>org.clojure</groupId>
<artifactId>core.cache</artifactId>
<version>0.7.1</version>
</dependency>
(require '[clojure.core.cache :as cache])
(def C1 (cache/fifo-cache-factory {:a 1, :b 2}))
(if (cache/has? C1 :c)
(cache/hit C1 :c)
(cache/miss C1 :c 42))
;=> {:a 1, :b 2, :c 42}
(cache/get C1 :c)
;=> 42
;; a shorthand for the above conditional...
(cache/through-cache C1 :c (constantly 42))
;; ...which uses a value to compute the result from the key...
(cache/through-cache C1 my-key (partial jdbc/get-by-id db-spec :storage))
;; ...so you could fetch values from a database if they're not in cache...
(cache/evict C1 :b)
;=> {:a 1}
;; since the caches are immutable, you would normally wrap them in an atom
(def C2 (atom (cache/fifo-cache-factory {:a 1, :b 2})))
(swap! C2 cache/through-cache :d (constantly 13))
;=> {:a 1, :b 3, :d 13}
(swap! C2 cache/evict :b)
;=> {:a 1, :d}
(get @C2 :a)
;=> 1
Refer to docstrings in the clojure.core.cache
namespace, or the autogenerated API documentation for additional documentation
seed
function and expand tests on TTLCacheQthrough-cache
to provide a version of through
that plays nice with swap!
etcatom
etcmiss
cost and make evict
O(1); rename TTLCache -> TTLCacheQ (Kevin Downey)evict
Copyright (c) Rich Hickey, Michael Fogus and contributors, 2012. All rights reserved. The use and distribution terms for this software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound bythe terms of this license. You must not remove this notice, or any other, from this software.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close