Deprecated functions
cache(cacheRepo = NULL, FUN, ..., notOlderThan = NULL,
objects = NULL, outputObjects = NULL, algo = "xxhash64")# S4 method for ANY
cache(cacheRepo = NULL, FUN, ..., notOlderThan = NULL,
objects = NULL, outputObjects = NULL, algo = "xxhash64")
A repository used for storing cached objects.
This is optional if Cache
is used inside a SpaDES module.
Either a function or an unevaluated function call (e.g., using
quote
.
Arguments of FUN
function .
load an artifact from the database only if it was created after notOlderThan.
Character vector of objects to be digested. This is only applicable if there is a list, environment (or similar) named objects within it. Only this/these objects will be considered for caching, i.e., only use a subset of the list, environment or similar objects.
Optional character vector indicating which objects to return. This is only relevant for list, environment (or similar) objects
The algorithms to be used; currently available choices are
md5
, which is also the default, sha1
, crc32
,
sha256
, sha512
, xxhash32
, xxhash64
and
murmur32
.