| showCacheCloud | R Documentation |
Downloads every per-cacheId metadata file (the small .dbFile.* files) from
the cloud cache folder, loads them, and rbindlists them into a single cache
data.table with the same shape as showCache(). This is what allows
showSimilar to compare the current call against artifacts cached by other
machines sharing the same cloudFolderID, not just those cached locally.
showCacheCloud(
cloudFolderID,
cachePath,
existingCacheIds = character(),
drv = getDrv(getOption("reproducible.drv", NULL)),
conn = getOption("reproducible.conn", NULL),
verbose = getOption("reproducible.verbose")
)
cloudFolderID |
A googledrive dribble of a folder, e.g., using |
cachePath |
A repository used for storing cached objects.
This is optional if |
existingCacheIds |
Character vector of |
drv |
If using a database backend, |
conn |
an optional |
verbose |
Numeric, -1 silent (where possible), 0 being very quiet,
1 showing more messaging, 2 being more messaging, etc.
Default is 1. Above 3 will output much more information about the internals of
Caching, which may help diagnose Caching challenges. Can set globally with an
option, e.g., |
The full object files are never fetched – only the small metadata files –
and any cacheId already present in existingCacheIds is skipped, so
locally-known artifacts do not pay for a re-download.
A cache data.table (possibly empty) of cloud-only metadata.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.