Liking cljdoc? Tell your friends :D

memento.config

Memoization library config.

Contains global settings that manipulate the cache mechanisms. See doc strings.

Contains conf settings as vars.

Also contains documented definitions of standard options of cache config.

Memoization library config.

Contains global settings that manipulate the cache mechanisms.
See doc strings.

Contains conf settings as vars.

Also contains documented definitions of standard options of cache config.
raw docstring

*default-type*clj

Default cache type.

Default cache type.
sourceraw docstring

concurrencyclj

Cache setting, supported by: guava, an int.

Guides the allowed concurrency among update operations. The table is internally partitioned to try to permit the indicated number of concurrent updates without contention

Cache setting, supported by: guava, an int.

Guides the allowed concurrency among update operations.  The table is internally partitioned to try to permit
the indicated number of concurrent updates without contention
sourceraw docstring

enabled?clj

If false, then all cache attach operations create a cache that does no caching (changing this value doesn't affect caches already created).

Initially has the value of java property memento.enabled (defaulting to true).

If false, then all cache attach operations create a cache that does no
caching (changing this value doesn't affect caches already created).

Initially has the value of java property `memento.enabled` (defaulting to true).
sourceraw docstring

fadeclj

Cache setting, supported by: guava, a duration.

Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, the most recent replacement of its value, or its last access. Access time is reset by all cache read and write operations.

Duration is specified by a number (of seconds) or a vector of a number and unit keyword. So fade of 10 or [10 :s] is the same. See 'timeunits' var.

Cache setting, supported by: guava, a duration.

Specifies that each entry should be automatically removed from the cache once a fixed duration
has elapsed after the entry's creation, the most recent replacement of its value, or its last access.
Access time is reset by all cache read and write operations.

Duration is specified by a number (of seconds) or a vector of a number and unit keyword.
So fade of 10 or [10 :s] is the same. See 'timeunits' var.
sourceraw docstring

guavaclj

Cache setting value, type name of guava cache implementation

Cache setting value, type name of guava cache implementation
sourceraw docstring

initial-capacityclj

Cache setting, supported by: guava, an int.

Sets the minimum total size for the internal hash tables. Providing a large enough estimate at construction time avoids the need for expensive resizing operations later, but setting this value unnecessarily high wastes memory.

Cache setting, supported by: guava, an int.

Sets the minimum total size for the internal hash tables. Providing a large enough estimate
at construction time avoids the need for expensive resizing operations later,
but setting this value unnecessarily high wastes memory.
sourceraw docstring

key-fnclj

Cache and function bind setting, a function to be used to calculate the cache key (fn [f-args] key).

Cache key affects what is considered the 'same' argument list for a function and it will affect caching in that manner.

It's a function of 1 argument, the seq of function arguments. If not provided it defaults to identity.

Cache and function bind setting, a function to be used to calculate the cache key (fn [f-args] key).

Cache key affects what is considered the 'same' argument list for a function and it will affect caching in that manner.

It's a function of 1 argument, the seq of function arguments. If not provided it defaults to identity.
sourceraw docstring

noneclj

Cache setting value, type name of noop cache implementation

Cache setting value, type name of noop cache implementation
sourceraw docstring

reload-guards?clj

If false, then all cache attach operations create a cache that does no caching (changing this value doesn't affect caches already created).

Initially has the value of java property memento.enabled (defaulting to true).

If false, then all cache attach operations create a cache that does no
caching (changing this value doesn't affect caches already created).

Initially has the value of java property `memento.enabled` (defaulting to true).
sourceraw docstring

ret-fnclj

Cache and function bind setting, a function that is ran to process the return of the function, before it's memoized, (fn [fn-args ret-value] transformed-value).

It can provide some generic transformation facility, but more importantly, it can wrap specific return values in 'do-not-cache' object, that prevents caching or wrap with tagged IDs.

Cache and function bind setting, a function that is ran to process the return of the function, before it's memoized,
 (fn [fn-args ret-value] transformed-value).

It can provide some generic transformation facility, but more importantly, it can wrap specific return
values in 'do-not-cache' object, that prevents caching or wrap with tagged IDs.
sourceraw docstring

seedclj

Function bind setting, a map of cache keys to values that will be preloaded when cache is bound.

Function bind setting, a map of cache keys to values that will be preloaded when cache is bound.
sourceraw docstring

size<clj

Cache setting, supported by: guava, a long.

Specifies the maximum number of entries the cache may contain. Some implementations might evict entries even before the number of entries reaches the limit.

Cache setting, supported by: guava, a long.

Specifies the maximum number of entries the cache may contain. Some implementations might evict entries
even before the number of entries reaches the limit.
sourceraw docstring

tagsclj

Function bind setting.

List of tags for this memoized bind.

Function bind setting.

List of tags for this memoized bind.
sourceraw docstring

timeunitsclj

Timeunits keywords

Timeunits keywords
sourceraw docstring

ttlclj

Cache setting, supported by: guava, a duration.

Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value via a put.

Duration is specified by a number (of seconds) or a vector of a number and unit keyword. So ttl of 10 or [10 :s] is the same. See 'timeunits' var.

Cache setting, supported by: guava, a duration.

Specifies that each entry should be automatically removed from the cache once a fixed duration
has elapsed after the entry's creation, or the most recent replacement of its value via a put.

Duration is specified by a number (of seconds) or a vector of a number and unit keyword.
So ttl of 10 or [10 :s] is the same. See 'timeunits' var.
sourceraw docstring

typeclj

Cache setting, type of cache or region that will be instantiated, a keyword.

The library has two built-ins:

  • memento.core/none
  • memento.core/guava

If not specified the caches created default to default-type.

Cache setting, type of cache or region that will be instantiated, a keyword.

 The library has two built-ins:
- memento.core/none
- memento.core/guava

If not specified the caches created default to *default-type*.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close