Index of Public Functions and Variables -
This page has an alphabetical index of all the documented functions and variables
in
A caching library implementing various cache strategies.
B
->BasicCache function clojure.core.cache Positional factory function for class clojure.core...
basic-cache-factory function clojure.core.cache Returns a pluggable basic cache initialied to `bas...
BasicCache type clojure.core.cache
C
CacheProtocol protocol clojure.core.cache This is the protocol describing the basic cache ca...
E
evict function clojure.core.cache Removes an entry from the cache.
F
->FIFOCache function clojure.core.cache Positional factory function for class clojure.core...
->FnCache function clojure.core.cache Positional factory function for class clojure.core...
fifo-cache-factory function clojure.core.cache Returns a FIFO cache with the cache and FIFO queue...
FIFOCache type clojure.core.cache
FnCache type clojure.core.cache
H
has? function clojure.core.cache Checks if the cache contains a value associtaed wi...
hit function clojure.core.cache Is meant to be called if the cache is determined t...
L
->LIRSCache function clojure.core.cache Positional factory function for class clojure.core...
->LRUCache function clojure.core.cache Positional factory function for class clojure.core...
->LUCache function clojure.core.cache Positional factory function for class clojure.core...
lirs-cache-factory function clojure.core.cache Returns an LIRS cache with the S & R LRU lists set...
LIRSCache type clojure.core.cache
lookup function clojure.core.cache Retrieve the value associated with `e` if it exist...
lru-cache-factory function clojure.core.cache Returns an LRU cache with the cache and usage-tabl...
LRUCache type clojure.core.cache
lu-cache-factory function clojure.core.cache Returns an LU cache with the cache and usage-table...
LUCache type clojure.core.cache
M
miss function clojure.core.cache Is meant to be called if the cache is determined t...
S
->SoftCache function clojure.core.cache Positional factory function for class clojure.core...
seed function clojure.core.cache Is used to signal that the cache should be created...
soft-cache-factory function clojure.core.cache Returns a SoftReference cache. Cached values will...
SoftCache type clojure.core.cache
T
->TTLCache function clojure.core.cache Positional factory function for class clojure.core...
through function clojure.core.cache The basic hit/miss logic for the cache system. Ex...
ttl-cache-factory function clojure.core.cache Returns a TTL cache with the cache and expiration-...
TTLCache type clojure.core.cache