| loadcache {cacher} | R Documentation |
Load R objects corresponding to a given expression from the cache
loadcache(num, env = parent.frame())
num |
expression sequence number |
env |
environment into which objects should be loaded |
Objects associated with an expression can be lazy-loaded into the environment
env using loadcache. One can obtain a list of which
objects are associated with which expressions using the
showobjects function. If loadcache is used to load
objects from a remote cache, then the corresponding database files
will be downloaded on the object's first access.
Expression sequence numbers can be obtained by calling code.
A character vector containing the names of the objects loaded (invisibly).