1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Source: r-cran-r.cache
Maintainer: Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net>
Uploaders: Michael R. Crusoe <michael.crusoe@gmail.com>
Section: gnu-r
Priority: optional
Build-Depends: debhelper-compat (= 12),
dh-r,
r-base-dev,
r-cran-r.methodss3 (>= 1.7.1),
r-cran-r.oo (>= 1.23.0),
r-cran-r.utils (>= 2.8.0),
r-cran-digest (>= 0.6.13)
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/r-pkg-team/r-cran-r.cache
Vcs-Git: https://salsa.debian.org/r-pkg-team/r-cran-r.cache.git
Homepage: https://cran.r-project.org/package=R.cache
Rules-Requires-Root: no
Package: r-cran-r.cache
Architecture: all
Depends: ${R:Depends},
${misc:Depends}
Recommends: ${R:Recommends}
Suggests: ${R:Suggests}
Description: R package: Fast and Light-Weight Caching of Objects and Results
Memoization can be used to speed up repetitive and computational expensive
function calls. The first time a function that implements memoization is
called the results are stored in a cache memory. The next time the function is
called with the same set of parameters, the results are momentarily retrieved
from the cache avoiding repeating the calculations. With this package, any R
object can be cached in a key-value storage where the key can be an arbitrary
set of R objects. The cache memory is persistent (on the file system).
|