1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/FileCache.R
\name{makeFileCache}
\alias{makeFileCache}
\title{A caching wrapper around load2}
\usage{
makeFileCache(use.cache = TRUE)
}
\arguments{
\item{use.cache}{[\code{logical(1)}]\cr
Enable the cache?
Default is \code{TRUE}.}
}
\value{
[\code{function()}] with argument \code{slot}
(name of the slot to cache the object in, default is \dQuote{default}).
All other arguments are passed down to \code{\link{load2}}.
}
\description{
This closure returns a wrapper around \code{\link{load2}} which per
default caches loaded objects and returns the cached version
in subsequent calls.
}
|