As part of a reproducible workflow, caching of function calls, code
chunks, and other elements of a project is a critical component. The
objective of a reproducible workflow is is likely that an entire work
flow from raw data to publication, decision support, report writing,
presentation building etc., could be built and be reproducible anywhere,
on any computer, operating system, with any starting conditions, on
demand. The reproducible::Cache function is built to work
with any R function.
Cache users DBI as a backend, with key
functions, dbReadTable, dbRemoveTable,
dbSendQuery, dbSendStatement,
dbCreateTable and dbAppendTable. These can all
be accessed via Cache, showCache,
clearCache, and keepCache. It is optimized for
speed of transactions, using digest::digest on objects and
files. The main function is superficially similar to
archivist::cache, which uses digest::digest in
all cases to determine whether the arguments are identical in subsequent
iterations. It also but does many things that make standard
caching with digest::digest don’t work reliably between
systems. For these, the function .robustDigest is
introduced to make caching transferable between systems. This is
relevant for file paths, environments, parallel clusters, functions
(which are contained within an environment), and many others (e.g., see
?.robustDigest for methods). Cache also adds
important elements like automated tagging and the option to retrieve
disk-cached values via stashed objects in memory using
memoise::memoise. This means that running
Cache 1, 2, and 3 times on the same function will get
progressively faster. This can be extremely useful for web apps built
with, say shiny.
Any function can be cached by wrapping Cache around the
function call, or by using base pipe |> or using:
Cache(FUN = functionName, ...)
This will be a slight change to a function call, such as:
terra::project(raster, crs = terra::crs(newRaster)) to
Cache(terra::project(raster, crs = terra::crs(newRaster)))
or
Cache(terra::project, raster, crs = terra::crs(newRaster))
or with the pipe
terra::project(raster, crs = terra::crs(newRaster)) |> Cache()
This is particularly useful for expensive operations.
## 
## Attaching package: 'data.table'## The following object is masked from 'package:terra':
## 
##     shifttmpDir <- file.path(tempdir(), "reproducible_examples", "Cache")
dir.create(tmpDir, recursive = TRUE)
ras <- terra::rast(terra::ext(0, 300, 0, 300), vals = 1:9e4, res = 1)
terra::crs(ras) <- "+proj=lcc +lat_1=48 +lat_2=33 +lon_0=-100 +datum=WGS84"
newCRS <- "+init=epsg:4326" # A longlat crs
# No Cache
system.time(suppressWarnings(map1 <- terra::project(ras, newCRS))) # Warnings due to new PROJ##    user  system elapsed 
##   0.028   0.000   0.030# Try with memoise for this example -- for many simple cases, memoising will not be faster
opts <- options("reproducible.useMemoise" = TRUE)
# With Cache -- a little slower the first time because saving to disk
system.time({
  suppressWarnings({
    map1 <- Cache(terra::project, ras, newCRS, cachePath = tmpDir, notOlderThan = Sys.time())
  })
})## Saved! Cache file: 58442e5727a1aa3c.rds; fn: terra::project##    user  system elapsed 
##   0.225   0.001   0.244# faster the second time; improvement depends on size of object and time to run function
system.time({
  map2 <- Cache(terra::project, ras, newCRS, cachePath = tmpDir)
})## Object to retrieve (fn: terra::project, 58442e5727a1aa3c.rds) ...## Loaded! Memoised result from previous terra::project call##    user  system elapsed 
##   0.143   0.000   0.151## [1] "Attributes: < Component \".Cache\": Component \"newCache\": 1 element mismatch >"               
## [2] "Attributes: < Component \"ptr\": Component \"origin\": Mean relative difference: 0.0005613483 >"try(clearCache(tmpDir, ask = FALSE), silent = TRUE) # just to make sure it is clear
ranNumsA <- Cache(rnorm, 10, 16, cachePath = tmpDir)## Saved! Cache file: 4fca280cda001fc9.rds; fn: rnorm## Object to retrieve (fn: rnorm, 4fca280cda001fc9.rds) ...## Loaded! Cached result from previous rnorm call## Object to retrieve (fn: quote, 4fca280cda001fc9.rds) ...## Loaded! Cached result from previous quote call## Object to retrieve (fn: rnorm, 4fca280cda001fc9.rds) ...## Loaded! Cached result from previous rnorm call## Object to retrieve (fn: rnorm, 4fca280cda001fc9.rds) ...
## Loaded! Cached result from previous rnorm call# Any minor change makes it different
ranNumsE <- Cache(rnorm, 10, 6, cachePath = tmpDir) # different## Saved! Cache file: 5efb386c43c29ce1.rds; fn: rnorm## Saved! Cache file: ad0ea27476c50b66.rds; fn: rnorm## Saved! Cache file: deaa37372f85861b.rds; fn: runif# access it again, from Cache
Sys.sleep(1)
ranNumsA <- Cache(rnorm, 4, cachePath = tmpDir, userTags = "objectName:a")## Object to retrieve (fn: rnorm, ad0ea27476c50b66.rds) ...## Loaded! Cached result from previous rnorm call## Cache size:## Total (including Rasters): 504 bytes## Selected objects (not including Rasters): 504 bytes# keep only items accessed "recently" (i.e., only objectName:a)
onlyRecentlyAccessed <- showCache(tmpDir, userTags = max(wholeCache[tagKey == "accessed"]$tagValue))## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes# inverse join with 2 data.tables ... using: a[!b]
# i.e., return all of wholeCache that was not recently accessed
#   Note: the two different ways to access -- old way with "artifact" will be deprecated
toRemove <- unique(wholeCache[!onlyRecentlyAccessed, on = "cacheId"], by = "cacheId")$cacheId
clearCache(tmpDir, toRemove, ask = FALSE) # remove ones not recently accessed## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: ad0ea27476c50b66          objectName                          a
##  2: ad0ea27476c50b66            function                      rnorm
##  3: ad0ea27476c50b66               class                    numeric
##  4: ad0ea27476c50b66         object.size                       1008
##  5: ad0ea27476c50b66            accessed 2024-12-11 21:35:17.898385
##  6: ad0ea27476c50b66             inCloud                      FALSE
##  7: ad0ea27476c50b66            fromDisk                      FALSE
##  8: ad0ea27476c50b66          resultHash                           
##  9: ad0ea27476c50b66   elapsedTimeDigest           0.001275063 secs
## 10: ad0ea27476c50b66 elapsedTimeFirstRun          6.175041e-05 secs
## 11: ad0ea27476c50b66      otherFunctions           vweave_rmarkdown
## 12: ad0ea27476c50b66      otherFunctions               process_file
## 13: ad0ea27476c50b66      otherFunctions              process_group
## 14: ad0ea27476c50b66      otherFunctions                 call_block
## 15: ad0ea27476c50b66      otherFunctions                 block_exec
## 16: ad0ea27476c50b66      otherFunctions                      eng_r
## 17: ad0ea27476c50b66      otherFunctions               in_input_dir
## 18: ad0ea27476c50b66      otherFunctions                     in_dir
## 19: ad0ea27476c50b66      otherFunctions              with_handlers
## 20: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
## 21: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
## 22: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
## 23: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
## 24: ad0ea27476c50b66            accessed 2024-12-11 21:35:18.941425
## 25: ad0ea27476c50b66     elapsedTimeLoad           0.008347511 secs
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:17.898835
##  2: 2024-12-11 21:35:17.898835
##  3: 2024-12-11 21:35:17.898835
##  4: 2024-12-11 21:35:17.898835
##  5: 2024-12-11 21:35:17.898835
##  6: 2024-12-11 21:35:17.898835
##  7: 2024-12-11 21:35:17.898835
##  8: 2024-12-11 21:35:17.898835
##  9: 2024-12-11 21:35:17.898835
## 10: 2024-12-11 21:35:17.898835
## 11: 2024-12-11 21:35:17.898835
## 12: 2024-12-11 21:35:17.898835
## 13: 2024-12-11 21:35:17.898835
## 14: 2024-12-11 21:35:17.898835
## 15: 2024-12-11 21:35:17.898835
## 16: 2024-12-11 21:35:17.898835
## 17: 2024-12-11 21:35:17.898835
## 18: 2024-12-11 21:35:17.898835
## 19: 2024-12-11 21:35:17.898835
## 20: 2024-12-11 21:35:17.898835
## 21: 2024-12-11 21:35:17.898835
## 22: 2024-12-11 21:35:17.898835
## 23: 2024-12-11 21:35:17.898835
## 24: 2024-12-11 21:35:18.941425
## 25: 2024-12-11 21:35:18.949858
##                    createdDatekeepCache does the same as previous example, but more
simply.
## Object to retrieve (fn: rnorm, ad0ea27476c50b66.rds) ...## Loaded! Cached result from previous rnorm call## Saved! Cache file: deaa37372f85861b.rds; fn: runif# keep only those cached items from the last 24 hours
oneDay <- 60 * 60 * 24
keepCache(tmpDir, after = Sys.time() - oneDay, ask = FALSE)## Cache size:## Total (including Rasters): 504 bytes## Selected objects (not including Rasters): 504 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: ad0ea27476c50b66          objectName                          a
##  2: ad0ea27476c50b66            function                      rnorm
##  3: ad0ea27476c50b66               class                    numeric
##  4: ad0ea27476c50b66         object.size                       1008
##  5: ad0ea27476c50b66            accessed 2024-12-11 21:35:17.898385
##  6: ad0ea27476c50b66             inCloud                      FALSE
##  7: ad0ea27476c50b66            fromDisk                      FALSE
##  8: ad0ea27476c50b66          resultHash                           
##  9: ad0ea27476c50b66   elapsedTimeDigest           0.001275063 secs
## 10: ad0ea27476c50b66 elapsedTimeFirstRun          6.175041e-05 secs
## 11: ad0ea27476c50b66      otherFunctions           vweave_rmarkdown
## 12: ad0ea27476c50b66      otherFunctions               process_file
## 13: ad0ea27476c50b66      otherFunctions              process_group
## 14: ad0ea27476c50b66      otherFunctions                 call_block
## 15: ad0ea27476c50b66      otherFunctions                 block_exec
## 16: ad0ea27476c50b66      otherFunctions                      eng_r
## 17: ad0ea27476c50b66      otherFunctions               in_input_dir
## 18: ad0ea27476c50b66      otherFunctions                     in_dir
## 19: ad0ea27476c50b66      otherFunctions              with_handlers
## 20: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
## 21: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
## 22: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
## 23: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
## 24: ad0ea27476c50b66            accessed 2024-12-11 21:35:18.941425
## 25: ad0ea27476c50b66     elapsedTimeLoad            0.00632906 secs
## 26: ad0ea27476c50b66            accessed 2024-12-11 21:35:19.023376
## 27: deaa37372f85861b          objectName                          b
## 28: deaa37372f85861b            function                      runif
## 29: deaa37372f85861b               class                    numeric
## 30: deaa37372f85861b         object.size                       1008
## 31: deaa37372f85861b            accessed 2024-12-11 21:35:19.039218
## 32: deaa37372f85861b             inCloud                      FALSE
## 33: deaa37372f85861b            fromDisk                      FALSE
## 34: deaa37372f85861b          resultHash                           
## 35: deaa37372f85861b   elapsedTimeDigest           0.001306534 secs
## 36: deaa37372f85861b elapsedTimeFirstRun          5.793571e-05 secs
## 37: deaa37372f85861b      otherFunctions           vweave_rmarkdown
## 38: deaa37372f85861b      otherFunctions               process_file
## 39: deaa37372f85861b      otherFunctions              process_group
## 40: deaa37372f85861b      otherFunctions                 call_block
## 41: deaa37372f85861b      otherFunctions                 block_exec
## 42: deaa37372f85861b      otherFunctions                      eng_r
## 43: deaa37372f85861b      otherFunctions               in_input_dir
## 44: deaa37372f85861b      otherFunctions                     in_dir
## 45: deaa37372f85861b      otherFunctions              with_handlers
## 46: deaa37372f85861b           preDigest         n:7eef4eae85fd9229
## 47: deaa37372f85861b           preDigest       min:c40c00762a0dac94
## 48: deaa37372f85861b           preDigest       max:853b1797f54b229c
## 49: deaa37372f85861b           preDigest      .FUN:881ec847b7161f3c
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:17.898835
##  2: 2024-12-11 21:35:17.898835
##  3: 2024-12-11 21:35:17.898835
##  4: 2024-12-11 21:35:17.898835
##  5: 2024-12-11 21:35:17.898835
##  6: 2024-12-11 21:35:17.898835
##  7: 2024-12-11 21:35:17.898835
##  8: 2024-12-11 21:35:17.898835
##  9: 2024-12-11 21:35:17.898835
## 10: 2024-12-11 21:35:17.898835
## 11: 2024-12-11 21:35:17.898835
## 12: 2024-12-11 21:35:17.898835
## 13: 2024-12-11 21:35:17.898835
## 14: 2024-12-11 21:35:17.898835
## 15: 2024-12-11 21:35:17.898835
## 16: 2024-12-11 21:35:17.898835
## 17: 2024-12-11 21:35:17.898835
## 18: 2024-12-11 21:35:17.898835
## 19: 2024-12-11 21:35:17.898835
## 20: 2024-12-11 21:35:17.898835
## 21: 2024-12-11 21:35:17.898835
## 22: 2024-12-11 21:35:17.898835
## 23: 2024-12-11 21:35:17.898835
## 24: 2024-12-11 21:35:18.941425
## 25: 2024-12-11 21:35:18.949858
## 26: 2024-12-11 21:35:19.023376
## 27: 2024-12-11 21:35:19.039691
## 28: 2024-12-11 21:35:19.039691
## 29: 2024-12-11 21:35:19.039691
## 30: 2024-12-11 21:35:19.039691
## 31: 2024-12-11 21:35:19.039691
## 32: 2024-12-11 21:35:19.039691
## 33: 2024-12-11 21:35:19.039691
## 34: 2024-12-11 21:35:19.039691
## 35: 2024-12-11 21:35:19.039691
## 36: 2024-12-11 21:35:19.039691
## 37: 2024-12-11 21:35:19.039691
## 38: 2024-12-11 21:35:19.039691
## 39: 2024-12-11 21:35:19.039691
## 40: 2024-12-11 21:35:19.039691
## 41: 2024-12-11 21:35:19.039691
## 42: 2024-12-11 21:35:19.039691
## 43: 2024-12-11 21:35:19.039691
## 44: 2024-12-11 21:35:19.039691
## 45: 2024-12-11 21:35:19.039691
## 46: 2024-12-11 21:35:19.039691
## 47: 2024-12-11 21:35:19.039691
## 48: 2024-12-11 21:35:19.039691
## 49: 2024-12-11 21:35:19.039691
##                    createdDate# Keep all Cache items created with an rnorm() call
keepCache(tmpDir, userTags = "rnorm", ask = FALSE)## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: ad0ea27476c50b66          objectName                          a
##  2: ad0ea27476c50b66            function                      rnorm
##  3: ad0ea27476c50b66               class                    numeric
##  4: ad0ea27476c50b66         object.size                       1008
##  5: ad0ea27476c50b66            accessed 2024-12-11 21:35:17.898385
##  6: ad0ea27476c50b66             inCloud                      FALSE
##  7: ad0ea27476c50b66            fromDisk                      FALSE
##  8: ad0ea27476c50b66          resultHash                           
##  9: ad0ea27476c50b66   elapsedTimeDigest           0.001275063 secs
## 10: ad0ea27476c50b66 elapsedTimeFirstRun          6.175041e-05 secs
## 11: ad0ea27476c50b66      otherFunctions           vweave_rmarkdown
## 12: ad0ea27476c50b66      otherFunctions               process_file
## 13: ad0ea27476c50b66      otherFunctions              process_group
## 14: ad0ea27476c50b66      otherFunctions                 call_block
## 15: ad0ea27476c50b66      otherFunctions                 block_exec
## 16: ad0ea27476c50b66      otherFunctions                      eng_r
## 17: ad0ea27476c50b66      otherFunctions               in_input_dir
## 18: ad0ea27476c50b66      otherFunctions                     in_dir
## 19: ad0ea27476c50b66      otherFunctions              with_handlers
## 20: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
## 21: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
## 22: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
## 23: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
## 24: ad0ea27476c50b66            accessed 2024-12-11 21:35:18.941425
## 25: ad0ea27476c50b66     elapsedTimeLoad            0.00632906 secs
## 26: ad0ea27476c50b66            accessed 2024-12-11 21:35:19.023376
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:17.898835
##  2: 2024-12-11 21:35:17.898835
##  3: 2024-12-11 21:35:17.898835
##  4: 2024-12-11 21:35:17.898835
##  5: 2024-12-11 21:35:17.898835
##  6: 2024-12-11 21:35:17.898835
##  7: 2024-12-11 21:35:17.898835
##  8: 2024-12-11 21:35:17.898835
##  9: 2024-12-11 21:35:17.898835
## 10: 2024-12-11 21:35:17.898835
## 11: 2024-12-11 21:35:17.898835
## 12: 2024-12-11 21:35:17.898835
## 13: 2024-12-11 21:35:17.898835
## 14: 2024-12-11 21:35:17.898835
## 15: 2024-12-11 21:35:17.898835
## 16: 2024-12-11 21:35:17.898835
## 17: 2024-12-11 21:35:17.898835
## 18: 2024-12-11 21:35:17.898835
## 19: 2024-12-11 21:35:17.898835
## 20: 2024-12-11 21:35:17.898835
## 21: 2024-12-11 21:35:17.898835
## 22: 2024-12-11 21:35:17.898835
## 23: 2024-12-11 21:35:17.898835
## 24: 2024-12-11 21:35:18.941425
## 25: 2024-12-11 21:35:18.949858
## 26: 2024-12-11 21:35:19.023376
##                    createdDate## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: ad0ea27476c50b66          objectName                          a
##  2: ad0ea27476c50b66            function                      rnorm
##  3: ad0ea27476c50b66               class                    numeric
##  4: ad0ea27476c50b66         object.size                       1008
##  5: ad0ea27476c50b66            accessed 2024-12-11 21:35:17.898385
##  6: ad0ea27476c50b66             inCloud                      FALSE
##  7: ad0ea27476c50b66            fromDisk                      FALSE
##  8: ad0ea27476c50b66          resultHash                           
##  9: ad0ea27476c50b66   elapsedTimeDigest           0.001275063 secs
## 10: ad0ea27476c50b66 elapsedTimeFirstRun          6.175041e-05 secs
## 11: ad0ea27476c50b66      otherFunctions           vweave_rmarkdown
## 12: ad0ea27476c50b66      otherFunctions               process_file
## 13: ad0ea27476c50b66      otherFunctions              process_group
## 14: ad0ea27476c50b66      otherFunctions                 call_block
## 15: ad0ea27476c50b66      otherFunctions                 block_exec
## 16: ad0ea27476c50b66      otherFunctions                      eng_r
## 17: ad0ea27476c50b66      otherFunctions               in_input_dir
## 18: ad0ea27476c50b66      otherFunctions                     in_dir
## 19: ad0ea27476c50b66      otherFunctions              with_handlers
## 20: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
## 21: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
## 22: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
## 23: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
## 24: ad0ea27476c50b66            accessed 2024-12-11 21:35:18.941425
## 25: ad0ea27476c50b66     elapsedTimeLoad            0.00632906 secs
## 26: ad0ea27476c50b66            accessed 2024-12-11 21:35:19.023376
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:17.898835
##  2: 2024-12-11 21:35:17.898835
##  3: 2024-12-11 21:35:17.898835
##  4: 2024-12-11 21:35:17.898835
##  5: 2024-12-11 21:35:17.898835
##  6: 2024-12-11 21:35:17.898835
##  7: 2024-12-11 21:35:17.898835
##  8: 2024-12-11 21:35:17.898835
##  9: 2024-12-11 21:35:17.898835
## 10: 2024-12-11 21:35:17.898835
## 11: 2024-12-11 21:35:17.898835
## 12: 2024-12-11 21:35:17.898835
## 13: 2024-12-11 21:35:17.898835
## 14: 2024-12-11 21:35:17.898835
## 15: 2024-12-11 21:35:17.898835
## 16: 2024-12-11 21:35:17.898835
## 17: 2024-12-11 21:35:17.898835
## 18: 2024-12-11 21:35:17.898835
## 19: 2024-12-11 21:35:17.898835
## 20: 2024-12-11 21:35:17.898835
## 21: 2024-12-11 21:35:17.898835
## 22: 2024-12-11 21:35:17.898835
## 23: 2024-12-11 21:35:17.898835
## 24: 2024-12-11 21:35:18.941425
## 25: 2024-12-11 21:35:18.949858
## 26: 2024-12-11 21:35:19.023376
##                    createdDate# Remove all Cache items that happened within a rnorm() call
clearCache(tmpDir, userTags = "rnorm", ask = FALSE)## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes## Cache size:## Total (including Rasters): 0 bytes## Selected objects (not including Rasters): 0 bytes## Empty data.table (0 rows and 4 cols): cacheId,tagKey,tagValue,createdDate# Also, can set a time before caching happens and remove based on this
#  --> a useful, simple way to control Cache
ranNumsA <- Cache(rnorm, 4, cachePath = tmpDir, userTags = "objectName:a")## Saved! Cache file: ad0ea27476c50b66.rds; fn: rnormstartTime <- Sys.time()
Sys.sleep(1)
ranNumsB <- Cache(rnorm, 5, cachePath = tmpDir, userTags = "objectName:b")## Saved! Cache file: ccacbf62081a42b4.rds; fn: rnorm## Cache size:## Total (including Rasters): 256 bytes## Selected objects (not including Rasters): 256 bytes## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes##              cacheId              tagKey                  tagValue
##               <char>              <char>                    <char>
##  1: ccacbf62081a42b4          objectName                         b
##  2: ccacbf62081a42b4            function                     rnorm
##  3: ccacbf62081a42b4               class                   numeric
##  4: ccacbf62081a42b4         object.size                      1024
##  5: ccacbf62081a42b4            accessed 2024-12-11 21:35:20.15344
##  6: ccacbf62081a42b4             inCloud                     FALSE
##  7: ccacbf62081a42b4            fromDisk                     FALSE
##  8: ccacbf62081a42b4          resultHash                          
##  9: ccacbf62081a42b4   elapsedTimeDigest          0.003914118 secs
## 10: ccacbf62081a42b4 elapsedTimeFirstRun         6.103516e-05 secs
## 11: ccacbf62081a42b4      otherFunctions          vweave_rmarkdown
## 12: ccacbf62081a42b4      otherFunctions              process_file
## 13: ccacbf62081a42b4      otherFunctions             process_group
## 14: ccacbf62081a42b4      otherFunctions                call_block
## 15: ccacbf62081a42b4      otherFunctions                block_exec
## 16: ccacbf62081a42b4      otherFunctions                     eng_r
## 17: ccacbf62081a42b4      otherFunctions              in_input_dir
## 18: ccacbf62081a42b4      otherFunctions                    in_dir
## 19: ccacbf62081a42b4      otherFunctions             with_handlers
## 20: ccacbf62081a42b4           preDigest        n:a4f076b3db622faf
## 21: ccacbf62081a42b4           preDigest     mean:c40c00762a0dac94
## 22: ccacbf62081a42b4           preDigest       sd:853b1797f54b229c
## 23: ccacbf62081a42b4           preDigest     .FUN:4f604aa46882b368
##              cacheId              tagKey                  tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:20.153873
##  2: 2024-12-11 21:35:20.153873
##  3: 2024-12-11 21:35:20.153873
##  4: 2024-12-11 21:35:20.153873
##  5: 2024-12-11 21:35:20.153873
##  6: 2024-12-11 21:35:20.153873
##  7: 2024-12-11 21:35:20.153873
##  8: 2024-12-11 21:35:20.153873
##  9: 2024-12-11 21:35:20.153873
## 10: 2024-12-11 21:35:20.153873
## 11: 2024-12-11 21:35:20.153873
## 12: 2024-12-11 21:35:20.153873
## 13: 2024-12-11 21:35:20.153873
## 14: 2024-12-11 21:35:20.153873
## 15: 2024-12-11 21:35:20.153873
## 16: 2024-12-11 21:35:20.153873
## 17: 2024-12-11 21:35:20.153873
## 18: 2024-12-11 21:35:20.153873
## 19: 2024-12-11 21:35:20.153873
## 20: 2024-12-11 21:35:20.153873
## 21: 2024-12-11 21:35:20.153873
## 22: 2024-12-11 21:35:20.153873
## 23: 2024-12-11 21:35:20.153873
##                    createdDate# default userTags is "and" matching; for "or" matching use |
ranNumsA <- Cache(runif, 4, cachePath = tmpDir, userTags = "objectName:a")## Saved! Cache file: deaa37372f85861b.rds; fn: runif## Saved! Cache file: ad0ea27476c50b66.rds; fn: rnorm## Cache size:## Total (including Rasters): 504 bytes## Selected objects (not including Rasters): 504 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: ad0ea27476c50b66          objectName                          b
##  2: ad0ea27476c50b66            function                      rnorm
##  3: ad0ea27476c50b66               class                    numeric
##  4: ad0ea27476c50b66         object.size                       1008
##  5: ad0ea27476c50b66            accessed 2024-12-11 21:35:20.252968
##  6: ad0ea27476c50b66             inCloud                      FALSE
##  7: ad0ea27476c50b66            fromDisk                      FALSE
##  8: ad0ea27476c50b66          resultHash                           
##  9: ad0ea27476c50b66   elapsedTimeDigest           0.001464605 secs
## 10: ad0ea27476c50b66 elapsedTimeFirstRun          5.912781e-05 secs
## 11: ad0ea27476c50b66      otherFunctions           vweave_rmarkdown
## 12: ad0ea27476c50b66      otherFunctions               process_file
## 13: ad0ea27476c50b66      otherFunctions              process_group
## 14: ad0ea27476c50b66      otherFunctions                 call_block
## 15: ad0ea27476c50b66      otherFunctions                 block_exec
## 16: ad0ea27476c50b66      otherFunctions                      eng_r
## 17: ad0ea27476c50b66      otherFunctions               in_input_dir
## 18: ad0ea27476c50b66      otherFunctions                     in_dir
## 19: ad0ea27476c50b66      otherFunctions              with_handlers
## 20: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
## 21: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
## 22: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
## 23: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
## 24: deaa37372f85861b          objectName                          a
## 25: deaa37372f85861b            function                      runif
## 26: deaa37372f85861b               class                    numeric
## 27: deaa37372f85861b         object.size                       1008
## 28: deaa37372f85861b            accessed 2024-12-11 21:35:20.236477
## 29: deaa37372f85861b             inCloud                      FALSE
## 30: deaa37372f85861b            fromDisk                      FALSE
## 31: deaa37372f85861b          resultHash                           
## 32: deaa37372f85861b   elapsedTimeDigest           0.001348972 secs
## 33: deaa37372f85861b elapsedTimeFirstRun          6.270409e-05 secs
## 34: deaa37372f85861b      otherFunctions           vweave_rmarkdown
## 35: deaa37372f85861b      otherFunctions               process_file
## 36: deaa37372f85861b      otherFunctions              process_group
## 37: deaa37372f85861b      otherFunctions                 call_block
## 38: deaa37372f85861b      otherFunctions                 block_exec
## 39: deaa37372f85861b      otherFunctions                      eng_r
## 40: deaa37372f85861b      otherFunctions               in_input_dir
## 41: deaa37372f85861b      otherFunctions                     in_dir
## 42: deaa37372f85861b      otherFunctions              with_handlers
## 43: deaa37372f85861b           preDigest         n:7eef4eae85fd9229
## 44: deaa37372f85861b           preDigest       min:c40c00762a0dac94
## 45: deaa37372f85861b           preDigest       max:853b1797f54b229c
## 46: deaa37372f85861b           preDigest      .FUN:881ec847b7161f3c
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:20.253401
##  2: 2024-12-11 21:35:20.253401
##  3: 2024-12-11 21:35:20.253401
##  4: 2024-12-11 21:35:20.253401
##  5: 2024-12-11 21:35:20.253401
##  6: 2024-12-11 21:35:20.253401
##  7: 2024-12-11 21:35:20.253401
##  8: 2024-12-11 21:35:20.253401
##  9: 2024-12-11 21:35:20.253401
## 10: 2024-12-11 21:35:20.253401
## 11: 2024-12-11 21:35:20.253401
## 12: 2024-12-11 21:35:20.253401
## 13: 2024-12-11 21:35:20.253401
## 14: 2024-12-11 21:35:20.253401
## 15: 2024-12-11 21:35:20.253401
## 16: 2024-12-11 21:35:20.253401
## 17: 2024-12-11 21:35:20.253401
## 18: 2024-12-11 21:35:20.253401
## 19: 2024-12-11 21:35:20.253401
## 20: 2024-12-11 21:35:20.253401
## 21: 2024-12-11 21:35:20.253401
## 22: 2024-12-11 21:35:20.253401
## 23: 2024-12-11 21:35:20.253401
## 24: 2024-12-11 21:35:20.236991
## 25: 2024-12-11 21:35:20.236991
## 26: 2024-12-11 21:35:20.236991
## 27: 2024-12-11 21:35:20.236991
## 28: 2024-12-11 21:35:20.236991
## 29: 2024-12-11 21:35:20.236991
## 30: 2024-12-11 21:35:20.236991
## 31: 2024-12-11 21:35:20.236991
## 32: 2024-12-11 21:35:20.236991
## 33: 2024-12-11 21:35:20.236991
## 34: 2024-12-11 21:35:20.236991
## 35: 2024-12-11 21:35:20.236991
## 36: 2024-12-11 21:35:20.236991
## 37: 2024-12-11 21:35:20.236991
## 38: 2024-12-11 21:35:20.236991
## 39: 2024-12-11 21:35:20.236991
## 40: 2024-12-11 21:35:20.236991
## 41: 2024-12-11 21:35:20.236991
## 42: 2024-12-11 21:35:20.236991
## 43: 2024-12-11 21:35:20.236991
## 44: 2024-12-11 21:35:20.236991
## 45: 2024-12-11 21:35:20.236991
## 46: 2024-12-11 21:35:20.236991
##                    createdDate# show objects that are both runif and rnorm
# (i.e., none in this case, because objecs are either or, not both)
showCache(tmpDir, userTags = c("runif", "rnorm")) ## empty## Cache size:## Total (including Rasters): 0 bytes## Selected objects (not including Rasters): 0 bytes## Empty data.table (0 rows and 4 cols): cacheId,tagKey,tagValue,createdDate# show objects that are either runif or rnorm ("or" search)
showCache(tmpDir, userTags = "runif|rnorm")## Cache size:## Total (including Rasters): 504 bytes## Selected objects (not including Rasters): 504 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: ad0ea27476c50b66          objectName                          b
##  2: ad0ea27476c50b66            function                      rnorm
##  3: ad0ea27476c50b66               class                    numeric
##  4: ad0ea27476c50b66         object.size                       1008
##  5: ad0ea27476c50b66            accessed 2024-12-11 21:35:20.252968
##  6: ad0ea27476c50b66             inCloud                      FALSE
##  7: ad0ea27476c50b66            fromDisk                      FALSE
##  8: ad0ea27476c50b66          resultHash                           
##  9: ad0ea27476c50b66   elapsedTimeDigest           0.001464605 secs
## 10: ad0ea27476c50b66 elapsedTimeFirstRun          5.912781e-05 secs
## 11: ad0ea27476c50b66      otherFunctions           vweave_rmarkdown
## 12: ad0ea27476c50b66      otherFunctions               process_file
## 13: ad0ea27476c50b66      otherFunctions              process_group
## 14: ad0ea27476c50b66      otherFunctions                 call_block
## 15: ad0ea27476c50b66      otherFunctions                 block_exec
## 16: ad0ea27476c50b66      otherFunctions                      eng_r
## 17: ad0ea27476c50b66      otherFunctions               in_input_dir
## 18: ad0ea27476c50b66      otherFunctions                     in_dir
## 19: ad0ea27476c50b66      otherFunctions              with_handlers
## 20: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
## 21: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
## 22: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
## 23: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
## 24: deaa37372f85861b          objectName                          a
## 25: deaa37372f85861b            function                      runif
## 26: deaa37372f85861b               class                    numeric
## 27: deaa37372f85861b         object.size                       1008
## 28: deaa37372f85861b            accessed 2024-12-11 21:35:20.236477
## 29: deaa37372f85861b             inCloud                      FALSE
## 30: deaa37372f85861b            fromDisk                      FALSE
## 31: deaa37372f85861b          resultHash                           
## 32: deaa37372f85861b   elapsedTimeDigest           0.001348972 secs
## 33: deaa37372f85861b elapsedTimeFirstRun          6.270409e-05 secs
## 34: deaa37372f85861b      otherFunctions           vweave_rmarkdown
## 35: deaa37372f85861b      otherFunctions               process_file
## 36: deaa37372f85861b      otherFunctions              process_group
## 37: deaa37372f85861b      otherFunctions                 call_block
## 38: deaa37372f85861b      otherFunctions                 block_exec
## 39: deaa37372f85861b      otherFunctions                      eng_r
## 40: deaa37372f85861b      otherFunctions               in_input_dir
## 41: deaa37372f85861b      otherFunctions                     in_dir
## 42: deaa37372f85861b      otherFunctions              with_handlers
## 43: deaa37372f85861b           preDigest         n:7eef4eae85fd9229
## 44: deaa37372f85861b           preDigest       min:c40c00762a0dac94
## 45: deaa37372f85861b           preDigest       max:853b1797f54b229c
## 46: deaa37372f85861b           preDigest      .FUN:881ec847b7161f3c
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:20.253401
##  2: 2024-12-11 21:35:20.253401
##  3: 2024-12-11 21:35:20.253401
##  4: 2024-12-11 21:35:20.253401
##  5: 2024-12-11 21:35:20.253401
##  6: 2024-12-11 21:35:20.253401
##  7: 2024-12-11 21:35:20.253401
##  8: 2024-12-11 21:35:20.253401
##  9: 2024-12-11 21:35:20.253401
## 10: 2024-12-11 21:35:20.253401
## 11: 2024-12-11 21:35:20.253401
## 12: 2024-12-11 21:35:20.253401
## 13: 2024-12-11 21:35:20.253401
## 14: 2024-12-11 21:35:20.253401
## 15: 2024-12-11 21:35:20.253401
## 16: 2024-12-11 21:35:20.253401
## 17: 2024-12-11 21:35:20.253401
## 18: 2024-12-11 21:35:20.253401
## 19: 2024-12-11 21:35:20.253401
## 20: 2024-12-11 21:35:20.253401
## 21: 2024-12-11 21:35:20.253401
## 22: 2024-12-11 21:35:20.253401
## 23: 2024-12-11 21:35:20.253401
## 24: 2024-12-11 21:35:20.236991
## 25: 2024-12-11 21:35:20.236991
## 26: 2024-12-11 21:35:20.236991
## 27: 2024-12-11 21:35:20.236991
## 28: 2024-12-11 21:35:20.236991
## 29: 2024-12-11 21:35:20.236991
## 30: 2024-12-11 21:35:20.236991
## 31: 2024-12-11 21:35:20.236991
## 32: 2024-12-11 21:35:20.236991
## 33: 2024-12-11 21:35:20.236991
## 34: 2024-12-11 21:35:20.236991
## 35: 2024-12-11 21:35:20.236991
## 36: 2024-12-11 21:35:20.236991
## 37: 2024-12-11 21:35:20.236991
## 38: 2024-12-11 21:35:20.236991
## 39: 2024-12-11 21:35:20.236991
## 40: 2024-12-11 21:35:20.236991
## 41: 2024-12-11 21:35:20.236991
## 42: 2024-12-11 21:35:20.236991
## 43: 2024-12-11 21:35:20.236991
## 44: 2024-12-11 21:35:20.236991
## 45: 2024-12-11 21:35:20.236991
## 46: 2024-12-11 21:35:20.236991
##                    createdDate# keep only objects that are either runif or rnorm ("or" search)
keepCache(tmpDir, userTags = "runif|rnorm", ask = FALSE)## Cache size:## Total (including Rasters): 504 bytes## Selected objects (not including Rasters): 504 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: ad0ea27476c50b66          objectName                          b
##  2: ad0ea27476c50b66            function                      rnorm
##  3: ad0ea27476c50b66               class                    numeric
##  4: ad0ea27476c50b66         object.size                       1008
##  5: ad0ea27476c50b66            accessed 2024-12-11 21:35:20.252968
##  6: ad0ea27476c50b66             inCloud                      FALSE
##  7: ad0ea27476c50b66            fromDisk                      FALSE
##  8: ad0ea27476c50b66          resultHash                           
##  9: ad0ea27476c50b66   elapsedTimeDigest           0.001464605 secs
## 10: ad0ea27476c50b66 elapsedTimeFirstRun          5.912781e-05 secs
## 11: ad0ea27476c50b66      otherFunctions           vweave_rmarkdown
## 12: ad0ea27476c50b66      otherFunctions               process_file
## 13: ad0ea27476c50b66      otherFunctions              process_group
## 14: ad0ea27476c50b66      otherFunctions                 call_block
## 15: ad0ea27476c50b66      otherFunctions                 block_exec
## 16: ad0ea27476c50b66      otherFunctions                      eng_r
## 17: ad0ea27476c50b66      otherFunctions               in_input_dir
## 18: ad0ea27476c50b66      otherFunctions                     in_dir
## 19: ad0ea27476c50b66      otherFunctions              with_handlers
## 20: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
## 21: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
## 22: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
## 23: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
## 24: deaa37372f85861b          objectName                          a
## 25: deaa37372f85861b            function                      runif
## 26: deaa37372f85861b               class                    numeric
## 27: deaa37372f85861b         object.size                       1008
## 28: deaa37372f85861b            accessed 2024-12-11 21:35:20.236477
## 29: deaa37372f85861b             inCloud                      FALSE
## 30: deaa37372f85861b            fromDisk                      FALSE
## 31: deaa37372f85861b          resultHash                           
## 32: deaa37372f85861b   elapsedTimeDigest           0.001348972 secs
## 33: deaa37372f85861b elapsedTimeFirstRun          6.270409e-05 secs
## 34: deaa37372f85861b      otherFunctions           vweave_rmarkdown
## 35: deaa37372f85861b      otherFunctions               process_file
## 36: deaa37372f85861b      otherFunctions              process_group
## 37: deaa37372f85861b      otherFunctions                 call_block
## 38: deaa37372f85861b      otherFunctions                 block_exec
## 39: deaa37372f85861b      otherFunctions                      eng_r
## 40: deaa37372f85861b      otherFunctions               in_input_dir
## 41: deaa37372f85861b      otherFunctions                     in_dir
## 42: deaa37372f85861b      otherFunctions              with_handlers
## 43: deaa37372f85861b           preDigest         n:7eef4eae85fd9229
## 44: deaa37372f85861b           preDigest       min:c40c00762a0dac94
## 45: deaa37372f85861b           preDigest       max:853b1797f54b229c
## 46: deaa37372f85861b           preDigest      .FUN:881ec847b7161f3c
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:20.253401
##  2: 2024-12-11 21:35:20.253401
##  3: 2024-12-11 21:35:20.253401
##  4: 2024-12-11 21:35:20.253401
##  5: 2024-12-11 21:35:20.253401
##  6: 2024-12-11 21:35:20.253401
##  7: 2024-12-11 21:35:20.253401
##  8: 2024-12-11 21:35:20.253401
##  9: 2024-12-11 21:35:20.253401
## 10: 2024-12-11 21:35:20.253401
## 11: 2024-12-11 21:35:20.253401
## 12: 2024-12-11 21:35:20.253401
## 13: 2024-12-11 21:35:20.253401
## 14: 2024-12-11 21:35:20.253401
## 15: 2024-12-11 21:35:20.253401
## 16: 2024-12-11 21:35:20.253401
## 17: 2024-12-11 21:35:20.253401
## 18: 2024-12-11 21:35:20.253401
## 19: 2024-12-11 21:35:20.253401
## 20: 2024-12-11 21:35:20.253401
## 21: 2024-12-11 21:35:20.253401
## 22: 2024-12-11 21:35:20.253401
## 23: 2024-12-11 21:35:20.253401
## 24: 2024-12-11 21:35:20.236991
## 25: 2024-12-11 21:35:20.236991
## 26: 2024-12-11 21:35:20.236991
## 27: 2024-12-11 21:35:20.236991
## 28: 2024-12-11 21:35:20.236991
## 29: 2024-12-11 21:35:20.236991
## 30: 2024-12-11 21:35:20.236991
## 31: 2024-12-11 21:35:20.236991
## 32: 2024-12-11 21:35:20.236991
## 33: 2024-12-11 21:35:20.236991
## 34: 2024-12-11 21:35:20.236991
## 35: 2024-12-11 21:35:20.236991
## 36: 2024-12-11 21:35:20.236991
## 37: 2024-12-11 21:35:20.236991
## 38: 2024-12-11 21:35:20.236991
## 39: 2024-12-11 21:35:20.236991
## 40: 2024-12-11 21:35:20.236991
## 41: 2024-12-11 21:35:20.236991
## 42: 2024-12-11 21:35:20.236991
## 43: 2024-12-11 21:35:20.236991
## 44: 2024-12-11 21:35:20.236991
## 45: 2024-12-11 21:35:20.236991
## 46: 2024-12-11 21:35:20.236991
##                    createdDateras <- terra::rast(terra::ext(0, 5, 0, 5),
  res = 1,
  vals = sample(1:5, replace = TRUE, size = 25),
  crs = "+proj=lcc +lat_1=48 +lat_2=33 +lon_0=-100 +ellps=WGS84"
)
rasCRS <- terra::crs(ras)
# A slow operation, like GIS operation
notCached <- suppressWarnings(
  # project raster generates warnings when run non-interactively
  terra::project(ras, rasCRS, res = 5)
)
cached <- suppressWarnings(
  # project raster generates warnings when run non-interactively
  # using quote works also
  Cache(terra::project, ras, rasCRS, res = 5, cachePath = tmpDir)
)## Saved! Cache file: 490cf1e8c6d66c2b.rds; fn: terra::project# second time is much faster
reRun <- suppressWarnings(
  # project raster generates warnings when run non-interactively
  Cache(terra::project, ras, rasCRS, res = 5, cachePath = tmpDir)
)## Object to retrieve (fn: terra::project, 490cf1e8c6d66c2b.rds) ...## Loaded! Cached result from previous terra::project call# recovered cached version is same as non-cached version
all.equal(notCached, reRun, check.attributes = FALSE) ## TRUE## [1] "Attributes: < Names: 2 string mismatches >"                                                    
## [2] "Attributes: < Length mismatch: comparison on first 2 components >"                             
## [3] "Attributes: < Component 1: Modes: character, list >"                                           
## [4] "Attributes: < Component 1: names for current but not for target >"                             
## [5] "Attributes: < Component 1: Attributes: < names for target but not for current > >"             
## [6] "Attributes: < Component 1: Attributes: < Length mismatch: comparison on first 0 components > >"
## [7] "Attributes: < Component 1: target is character, current is list >"                             
## [8] "Attributes: < Component 2: 'current' is not an envRefClass >"Nested caching, which is when Caching of a function occurs inside an outer function, which is itself cached. This is a critical element to working within a reproducible work flow. It is not enough during development to cache flat code chunks, as there will be many levels of “slow” functions. Ideally, at all points in a development cycle, it should be possible to get to any line of code starting from the very initial steps, running through everything up to that point, in less than a few seconds. If the workflow can be kept very fast like this, then there is a guarantee that it will work at any point.
##########################
## Nested Caching
# Make 2 functions
inner <- function(mean) {
  d <- 1
  Cache(rnorm, n = 3, mean = mean)
}
outer <- function(n) {
  Cache(inner, 0.1, cachePath = tmpdir2)
}
# make 2 different cache paths
tmpdir1 <- file.path(tempdir(), "first")
tmpdir2 <- file.path(tempdir(), "second")
# Run the Cache ... notOlderThan propagates to all 3 Cache calls,
#   but cachePath is tmpdir1 in top level Cache and all nested
#   Cache calls, unless individually overridden ... here inner
#   uses tmpdir2 repository
Cache(outer, n = 2, cachePath = tmpdir1, notOlderThan = Sys.time())## No cachePath supplied and getOption('reproducible.cachePath') is inside a temporary directory;
##   this will not persist across R sessions.## Saved! Cache file: efa1ccee79a31d4c.rds; fn: rnorm## Saved! Cache file: 33ceb4fb525fd08f.rds; fn: inner## Saved! Cache file: dffc8e3bf8c23b6e.rds; fn: outer## [1] -0.97378695  1.05328113  0.04314315
## attr(,".Cache")
## attr(,".Cache")$newCache
## [1] TRUE
## 
## attr(,"tags")
## [1] "cacheId:dffc8e3bf8c23b6e"
## attr(,"call")
## [1] ""## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: dffc8e3bf8c23b6e            function                      outer
##  2: dffc8e3bf8c23b6e               class                    numeric
##  3: dffc8e3bf8c23b6e         object.size                       1008
##  4: dffc8e3bf8c23b6e            accessed 2024-12-11 21:35:20.516915
##  5: dffc8e3bf8c23b6e             inCloud                      FALSE
##  6: dffc8e3bf8c23b6e            fromDisk                      FALSE
##  7: dffc8e3bf8c23b6e          resultHash                           
##  8: dffc8e3bf8c23b6e   elapsedTimeDigest           0.001222372 secs
##  9: dffc8e3bf8c23b6e elapsedTimeFirstRun            0.05386305 secs
## 10: dffc8e3bf8c23b6e      otherFunctions           vweave_rmarkdown
## 11: dffc8e3bf8c23b6e      otherFunctions               process_file
## 12: dffc8e3bf8c23b6e      otherFunctions              process_group
## 13: dffc8e3bf8c23b6e      otherFunctions                 call_block
## 14: dffc8e3bf8c23b6e      otherFunctions                 block_exec
## 15: dffc8e3bf8c23b6e      otherFunctions                      eng_r
## 16: dffc8e3bf8c23b6e      otherFunctions               in_input_dir
## 17: dffc8e3bf8c23b6e      otherFunctions                     in_dir
## 18: dffc8e3bf8c23b6e      otherFunctions              with_handlers
## 19: dffc8e3bf8c23b6e           preDigest         n:82dc709f2b91918a
## 20: dffc8e3bf8c23b6e           preDigest      .FUN:b89dd186387954a0
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:20.517385
##  2: 2024-12-11 21:35:20.517385
##  3: 2024-12-11 21:35:20.517385
##  4: 2024-12-11 21:35:20.517385
##  5: 2024-12-11 21:35:20.517385
##  6: 2024-12-11 21:35:20.517385
##  7: 2024-12-11 21:35:20.517385
##  8: 2024-12-11 21:35:20.517385
##  9: 2024-12-11 21:35:20.517385
## 10: 2024-12-11 21:35:20.517385
## 11: 2024-12-11 21:35:20.517385
## 12: 2024-12-11 21:35:20.517385
## 13: 2024-12-11 21:35:20.517385
## 14: 2024-12-11 21:35:20.517385
## 15: 2024-12-11 21:35:20.517385
## 16: 2024-12-11 21:35:20.517385
## 17: 2024-12-11 21:35:20.517385
## 18: 2024-12-11 21:35:20.517385
## 19: 2024-12-11 21:35:20.517385
## 20: 2024-12-11 21:35:20.517385
##                    createdDate## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: 33ceb4fb525fd08f            function                      inner
##  2: 33ceb4fb525fd08f               class                    numeric
##  3: 33ceb4fb525fd08f         object.size                       1008
##  4: 33ceb4fb525fd08f            accessed 2024-12-11 21:35:20.505788
##  5: 33ceb4fb525fd08f             inCloud                      FALSE
##  6: 33ceb4fb525fd08f            fromDisk                      FALSE
##  7: 33ceb4fb525fd08f          resultHash                           
##  8: 33ceb4fb525fd08f   elapsedTimeDigest           0.001222134 secs
##  9: 33ceb4fb525fd08f elapsedTimeFirstRun             0.0265038 secs
## 10: 33ceb4fb525fd08f      otherFunctions           vweave_rmarkdown
## 11: 33ceb4fb525fd08f      otherFunctions               process_file
## 12: 33ceb4fb525fd08f      otherFunctions              process_group
## 13: 33ceb4fb525fd08f      otherFunctions                 call_block
## 14: 33ceb4fb525fd08f      otherFunctions                 block_exec
## 15: 33ceb4fb525fd08f      otherFunctions                      eng_r
## 16: 33ceb4fb525fd08f      otherFunctions               in_input_dir
## 17: 33ceb4fb525fd08f      otherFunctions                     in_dir
## 18: 33ceb4fb525fd08f      otherFunctions              with_handlers
## 19: 33ceb4fb525fd08f      otherFunctions                        out
## 20: 33ceb4fb525fd08f           preDigest      mean:22413394efd9f6a3
## 21: 33ceb4fb525fd08f           preDigest      .FUN:87e2c30917a34d25
##              cacheId              tagKey                   tagValue
##                    createdDate
##                         <char>
##  1: 2024-12-11 21:35:20.506257
##  2: 2024-12-11 21:35:20.506257
##  3: 2024-12-11 21:35:20.506257
##  4: 2024-12-11 21:35:20.506257
##  5: 2024-12-11 21:35:20.506257
##  6: 2024-12-11 21:35:20.506257
##  7: 2024-12-11 21:35:20.506257
##  8: 2024-12-11 21:35:20.506257
##  9: 2024-12-11 21:35:20.506257
## 10: 2024-12-11 21:35:20.506257
## 11: 2024-12-11 21:35:20.506257
## 12: 2024-12-11 21:35:20.506257
## 13: 2024-12-11 21:35:20.506257
## 14: 2024-12-11 21:35:20.506257
## 15: 2024-12-11 21:35:20.506257
## 16: 2024-12-11 21:35:20.506257
## 17: 2024-12-11 21:35:20.506257
## 18: 2024-12-11 21:35:20.506257
## 19: 2024-12-11 21:35:20.506257
## 20: 2024-12-11 21:35:20.506257
## 21: 2024-12-11 21:35:20.506257
##                    createdDate# userTags get appended
# all items have the outer tag propagate, plus inner ones only have inner ones
clearCache(tmpdir1, ask = FALSE)
outerTag <- "outerTag"
innerTag <- "innerTag"
inner <- function(mean) {
  d <- 1
  Cache(rnorm, n = 3, mean = mean, notOlderThan = Sys.time() - 1e5, userTags = innerTag)
}
outer <- function(n) {
  Cache(inner, 0.1)
}
aa <- Cache(outer, n = 2, cachePath = tmpdir1, userTags = outerTag)## No cachePath supplied and getOption('reproducible.cachePath') is inside a temporary directory;
##   this will not persist across R sessions.## No cachePath supplied and getOption('reproducible.cachePath') is inside a temporary directory;
##   this will not persist across R sessions.## Object to retrieve (fn: rnorm, efa1ccee79a31d4c.rds) ...## Loaded! Cached result from previous rnorm call## Saved! Cache file: b06af03d5a73dc7d.rds; fn: inner## Saved! Cache file: 88a34e1d033329e5.rds; fn: outer## Cache size:## Total (including Rasters): 252 bytes## Selected objects (not including Rasters): 252 bytes##              cacheId              tagKey                   tagValue
##               <char>              <char>                     <char>
##  1: 88a34e1d033329e5            outerTag                   outerTag
##  2: 88a34e1d033329e5            function                      outer
##  3: 88a34e1d033329e5               class                    numeric
##  4: 88a34e1d033329e5         object.size                       1008
##  5: 88a34e1d033329e5            accessed 2024-12-11 21:35:20.594659
##  6: 88a34e1d033329e5             inCloud                      FALSE
##  7: 88a34e1d033329e5            fromDisk                      FALSE
##  8: 88a34e1d033329e5          resultHash                           
##  9: 88a34e1d033329e5   elapsedTimeDigest           0.001126766 secs
## 10: 88a34e1d033329e5 elapsedTimeFirstRun            0.03040671 secs
## 11: 88a34e1d033329e5      otherFunctions           vweave_rmarkdown
## 12: 88a34e1d033329e5      otherFunctions               process_file
## 13: 88a34e1d033329e5      otherFunctions              process_group
## 14: 88a34e1d033329e5      otherFunctions                 call_block
## 15: 88a34e1d033329e5      otherFunctions                 block_exec
## 16: 88a34e1d033329e5      otherFunctions                      eng_r
## 17: 88a34e1d033329e5      otherFunctions               in_input_dir
## 18: 88a34e1d033329e5      otherFunctions                     in_dir
## 19: 88a34e1d033329e5      otherFunctions              with_handlers
## 20: 88a34e1d033329e5           preDigest         n:82dc709f2b91918a
## 21: 88a34e1d033329e5           preDigest      .FUN:5f06fb5fbffe9e3b
##              cacheId              tagKey                   tagValue
##                   createdDate
##                        <char>
##  1: 2024-12-11 21:35:20.59509
##  2: 2024-12-11 21:35:20.59509
##  3: 2024-12-11 21:35:20.59509
##  4: 2024-12-11 21:35:20.59509
##  5: 2024-12-11 21:35:20.59509
##  6: 2024-12-11 21:35:20.59509
##  7: 2024-12-11 21:35:20.59509
##  8: 2024-12-11 21:35:20.59509
##  9: 2024-12-11 21:35:20.59509
## 10: 2024-12-11 21:35:20.59509
## 11: 2024-12-11 21:35:20.59509
## 12: 2024-12-11 21:35:20.59509
## 13: 2024-12-11 21:35:20.59509
## 14: 2024-12-11 21:35:20.59509
## 15: 2024-12-11 21:35:20.59509
## 16: 2024-12-11 21:35:20.59509
## 17: 2024-12-11 21:35:20.59509
## 18: 2024-12-11 21:35:20.59509
## 19: 2024-12-11 21:35:20.59509
## 20: 2024-12-11 21:35:20.59509
## 21: 2024-12-11 21:35:20.59509
##                   createdDateSometimes, it is not absolutely desirable to maintain the work flow
intact because changes that are irrelevant to the analysis, such as
changing messages sent to a user, may be changed, without a desire to
rerun functions. The cacheId argument is for this. Once a
piece of code is run, then the cacheId can be manually
extracted (it is reported at the end of a Cache call) and manually
placed in the code, passed in as, say,
cacheId = "ad184ce64541972b50afd8e7b75f821b".
## Saved! Cache file: 422bae4ed2f770cc.rds; fn: rnorm## [1] 1.511781
## attr(,".Cache")
## attr(,".Cache")$newCache
## [1] TRUE
## 
## attr(,"tags")
## [1] "cacheId:422bae4ed2f770cc"
## attr(,"call")
## [1] ""# manually look at output attribute which shows cacheId: 7072c305d8c69df0
Cache(rnorm, 1, cachePath = tmpdir1, cacheId = "422bae4ed2f770cc") # same value## cacheId is same as calculated hash## Object to retrieve (fn: rnorm, 422bae4ed2f770cc.rds) ...## Loaded! Cached result from previous rnorm call## [1] 1.511781
## attr(,".Cache")
## attr(,".Cache")$newCache
## [1] FALSE
## 
## attr(,"tags")
## [1] "cacheId:422bae4ed2f770cc"
## attr(,"call")
## [1] ""# override even with different inputs:
Cache(rnorm, 2, cachePath = tmpdir1, cacheId = "422bae4ed2f770cc")## cacheId is not same as calculated hash. Manually searching for
##   cacheId:422bae4ed2f770cc## Saved! Cache file: 422bae4ed2f770cc.rds; fn: rnorm## [1] -1.3770596 -0.4149946
## attr(,".Cache")
## attr(,".Cache")$newCache
## [1] TRUE
## 
## attr(,"tags")
## [1] "cacheId:422bae4ed2f770cc"
## attr(,"call")
## [1] ""Since the cache is simply a DBI data table (of an SQLite
database by default). In addition, there are several helpers in the
reproducible package, including showCache,
keepCache and clearCache that may be useful.
Also, one can access cached items manually (rather than simply rerunning
the same Cache function again).
# As of reproducible version 1.0, there is a new backend directly using DBI
mapHash <- unique(showCache(tmpDir, userTags = "project")$cacheId)## Cache size:## Total (including Rasters): 978 bytes## Selected objects (not including Rasters): 978 bytes## Loaded! Cached result from previous  callBy default, caching relies on a sqlite database for it’s backend.
While this works in many situations, there are some important
limitations of using sqlite for caching, including 1) speed; 2)
concurrent transactions; 3) sharing database across machines or
projects. Fortunately, Cache makes use of DBI
package and thus supports several database backends, including mysql and
postgresql.
See https://github.com/PredictiveEcology/SpaDES/wiki/Using-alternate-database-backends-for-Cache for further information on configuring these additional backends.
In general, we feel that a liberal use of Cache will
make a re-usable and reproducible work flow. shiny apps can
be made, taking advantage of Cache. Indeed, much of the
difficulty in managing data sets and saving them for future use, can be
accommodated by caching.