The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

Sharing caches across projects

Nathan Sheffield

2021-04-16

Sharing caches across projects

By default, simpleCache will store its caches for your project in the RCACHE.DIR global option. This is designed to be a project-specific directory, so I have a different RCache dir for each of my projects. Sometimes, though, I want to share caches across projects, and so it’s useful to have a definition of a shared cache directory. I think of this as a general resource. For instance, I use this to store the location of all CpGs in the human genome, which I use repeatedly in many projects.

To solve this problem, simpleCache uses a second global option, SHARE.RCACHE.DIR, which you can access with the convenience setter setSharedCacheDir(). Then, you use simpleCache as normal but with the additional parameter of cacheDir, or the convenience alias simpleCacheShared(), as outlined below:

library(simpleCache)
cacheDir = tempdir()
setSharedCacheDir(cacheDir)
simpleCacheShared("normSample", { rnorm(1e7, 0,1) }, recreate=TRUE)
## ::Creating cache::   /tmp/RtmpknnJ2b/normSample.RData
simpleCacheShared("normSample", { rnorm(1e7, 0,1) })
## ::Object exists (in .GlobalEnv)::    normSample
deleteCaches("normSample", force=TRUE)
## Deleting

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.