powered by
Note that cache_layered is currently experimental.
cache_layered
cache_layered(..., logfile = NULL)
A layered caching object, with class cache_layered.
Cache objects to compose into a new, layered cache object.
An optional filename or connection object to where logging information will be written. To log to the console, use stderr() or stdout().
stderr()
stdout()
# Make a layered cache from a small memory cache and large disk cache m <- cache_mem(max_size = 100 * 1024^2) d <- cache_disk(max_size = 2 * 1024^3) cl <- cache_layered(m, d)
Run the code above in your browser using DataLab