These are convenience wrappers around DBI package functions. They allow the user a bit of control over what is being cached.

clearCache(
  x,
  userTags = character(),
  after = NULL,
  before = NULL,
  ask = getOption("reproducible.ask"),
  useCloud = FALSE,
  cloudFolderID = getOption("reproducible.cloudFolderID", NULL),
  drv = getDrv(getOption("reproducible.drv", NULL)),
  conn = getOption("reproducible.conn", NULL),
  verbose = getOption("reproducible.verbose"),
  ...
)

# S4 method for ANY
clearCache(
  x,
  userTags = character(),
  after = NULL,
  before = NULL,
  ask = getOption("reproducible.ask"),
  useCloud = FALSE,
  cloudFolderID = getOption("reproducible.cloudFolderID", NULL),
  drv = getDrv(getOption("reproducible.drv", NULL)),
  conn = getOption("reproducible.conn", NULL),
  verbose = getOption("reproducible.verbose"),
  ...
)

cc(secs, ..., verbose = getOption("reproducible.verbose"))

showCache(
  x,
  userTags = character(),
  after = NULL,
  before = NULL,
  drv = getDrv(getOption("reproducible.drv", NULL)),
  conn = getOption("reproducible.conn", NULL),
  verbose = getOption("reproducible.verbose"),
  ...
)

# S4 method for ANY
showCache(
  x,
  userTags = character(),
  after = NULL,
  before = NULL,
  drv = getDrv(getOption("reproducible.drv", NULL)),
  conn = getOption("reproducible.conn", NULL),
  verbose = getOption("reproducible.verbose"),
  ...
)

keepCache(
  x,
  userTags = character(),
  after = NULL,
  before = NULL,
  ask = getOption("reproducible.ask"),
  drv = getDrv(getOption("reproducible.drv", NULL)),
  conn = getOption("reproducible.conn", NULL),
  verbose = getOption("reproducible.verbose"),
  ...
)

# S4 method for ANY
keepCache(
  x,
  userTags = character(),
  after = NULL,
  before = NULL,
  ask = getOption("reproducible.ask"),
  drv = getDrv(getOption("reproducible.drv", NULL)),
  conn = getOption("reproducible.conn", NULL),
  verbose = getOption("reproducible.verbose"),
  ...
)

Arguments

x

A simList or a directory containing a valid Cache repository. Note: For compatibility with Cache argument, cachePath can also be used instead of x, though x will take precedence.

userTags

Character vector. If used, this will be used in place of the after and before. Specifying one or more userTag here will clear all objects that match those tags. Matching is via regular expression, meaning partial matches will work unless strict beginning (^) and end ($) of string characters are used. Matching will be against any of the 3 columns returned by showCache(), i.e., artifact, tagValue or tagName. Also, if length(userTags) > 1, then matching is by and. For or matching, use | in a single character string. See examples.

after

A time (POSIX, character understandable by data.table). Objects cached after this time will be shown or deleted.

before

A time (POSIX, character understandable by data.table). Objects cached before this time will be shown or deleted.

ask

Logical. If FALSE, then it will not ask to confirm deletions using clearCache or keepCache. Default is TRUE

useCloud

Logical. If TRUE, then every object that is deleted locally will also be deleted in the cloudFolderID, if it is non-NULL

cloudFolderID

A googledrive dribble of a folder, e.g., using drive_mkdir(). If left as NULL, the function will create a cloud folder with name from last two folder levels of the cachePath path, : paste0(basename(dirname(cachePath)), "_", basename(cachePath)). This cloudFolderID will be added to options("reproducible.cloudFolderID"), but this will not persist across sessions. If this is a character string, it will treat this as a folder name to create or use on GoogleDrive.

drv

if using a database backend, drv must be an object that inherits from DBIDriver e.g., from package RSQLite, e.g., SQLite

conn

an optional DBIConnection object, as returned by dbConnect().

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., options('reproducible.verbose' = 0) to reduce to minimal

...

Other arguments. Currently, regexp, a logical, can be provided. This must be TRUE if the use is passing a regular expression. Otherwise, userTags will need to be exact matches. Default is missing, which is the same as TRUE. If there are errors due to regular expression problem, try FALSE. For cc, it is passed to clearCache, e.g., ask, userTags. For showCache, it can also be sorted = FALSE to return the object unsorted.

secs

Currently 3 options: the number of seconds to pass to clearCache(after = secs), a POSIXct time e.g., from Sys.time(), or missing. If missing, the default, then it will delete the most recent entry in the Cache.

Value

Will clear all objects (or those that match userTags, or those between after or before) from the repository located at cachePath of the sim object, if sim is provided, or located in cachePath. Invisibly returns a data.table of the removed items.

Details

If neither after or before are provided, nor userTags, then all objects will be removed. If both after and before are specified, then all objects between after and before will be deleted. If userTags is used, this will override after or before.

cc(secs) is just a shortcut for clearCache(repo = currentRepo, after = secs), i.e., to remove any cache entries touched in the last secs seconds. Since, secs can be missing, this is also be a shorthand for "remove most recent entry from the cache".

clearCache

remove items from the cache based on their userTag or times values.

keepCache

remove all cached items except those based on certain userTags or times values.

showCache

display the contents of the cache.

By default the return of showCache is sorted by cacheId. For convenience, a user can optionally have it unsorted (passing sorted = FALSE), which may be noticeably faster when the cache is large (> 1e4 entries).

Note

If the cache is larger than 10MB, and clearCache is used, there will be a message and a pause, if interactive, to prevent accidentally deleting of a large cache repository.

See also

mergeCache(). Many more examples in Cache().

Examples

data.table::setDTthreads(2)

tmpDir <- file.path(tempdir(), "reproducible_examples", "Cache")
try(clearCache(tmpDir, ask = FALSE), silent = TRUE) # just to make sure it is clear

# Basic use
ranNumsA <- Cache(rnorm, 10, 16, cachePath = tmpDir)

# All same
ranNumsB <- Cache(rnorm, 10, 16, cachePath = tmpDir) # recovers cached copy
#>   ...(Object to retrieve (fn: rnorm, 4fca280cda001fc9.rds))
#>      loaded cached result from previous rnorm call
ranNumsD <- Cache(quote(rnorm(n = 10, 16)), cachePath = tmpDir) # recovers cached copy
#>   ...(Object to retrieve (fn: quote, 4fca280cda001fc9.rds))
#>      loaded cached result from previous quote call

# Any minor change makes it different
ranNumsE <- Cache(rnorm, 10, 6, cachePath = tmpDir) # different

## Example 1: basic cache use with tags
ranNumsA <- Cache(rnorm, 4, cachePath = tmpDir, userTags = "objectName:a")
ranNumsB <- Cache(runif, 4, cachePath = tmpDir, userTags = "objectName:b")
ranNumsC <- Cache(runif, 40, cachePath = tmpDir, userTags = "objectName:b")

showCache(tmpDir, userTags = c("objectName"))
#> Cache size: 
#>   Total (including Rasters): 828 bytes
#>   Selected objects (not including Rasters): 828 bytes
#>              cacheId              tagKey                   tagValue
#>               <char>              <char>                     <char>
#>  1: a0603ff09bb4ce83          objectName                          b
#>  2: a0603ff09bb4ce83            function                      runif
#>  3: a0603ff09bb4ce83               class                    numeric
#>  4: a0603ff09bb4ce83         object.size                       1296
#>  5: a0603ff09bb4ce83            accessed 2024-04-15 16:17:22.996399
#>  6: a0603ff09bb4ce83             inCloud                      FALSE
#>  7: a0603ff09bb4ce83            fromDisk                      FALSE
#>  8: a0603ff09bb4ce83          resultHash                           
#>  9: a0603ff09bb4ce83   elapsedTimeDigest           0.001474857 secs
#> 10: a0603ff09bb4ce83 elapsedTimeFirstRun          1.907349e-05 secs
#> 11: a0603ff09bb4ce83      otherFunctions                 build_site
#> 12: a0603ff09bb4ce83      otherFunctions           build_site_local
#> 13: a0603ff09bb4ce83      otherFunctions            build_reference
#> 14: a0603ff09bb4ce83      otherFunctions                       map_
#> 15: a0603ff09bb4ce83      otherFunctions        with_indexed_errors
#> 16: a0603ff09bb4ce83      otherFunctions          call_with_cleanup
#> 17: a0603ff09bb4ce83      otherFunctions       data_reference_topic
#> 18: a0603ff09bb4ce83      otherFunctions               run_examples
#> 19: a0603ff09bb4ce83      otherFunctions         highlight_examples
#> 20: a0603ff09bb4ce83      otherFunctions                  timing_fn
#> 21: a0603ff09bb4ce83      otherFunctions                     handle
#> 22: a0603ff09bb4ce83      otherFunctions                        try
#> 23: a0603ff09bb4ce83           preDigest         n:1393aef18608c8be
#> 24: a0603ff09bb4ce83           preDigest       min:c40c00762a0dac94
#> 25: a0603ff09bb4ce83           preDigest       max:853b1797f54b229c
#> 26: a0603ff09bb4ce83           preDigest      .FUN:881ec847b7161f3c
#> 27: ad0ea27476c50b66          objectName                          a
#> 28: ad0ea27476c50b66            function                      rnorm
#> 29: ad0ea27476c50b66               class                    numeric
#> 30: ad0ea27476c50b66         object.size                       1008
#> 31: ad0ea27476c50b66            accessed 2024-04-15 16:17:22.969502
#> 32: ad0ea27476c50b66             inCloud                      FALSE
#> 33: ad0ea27476c50b66            fromDisk                      FALSE
#> 34: ad0ea27476c50b66          resultHash                           
#> 35: ad0ea27476c50b66   elapsedTimeDigest           0.001528978 secs
#> 36: ad0ea27476c50b66 elapsedTimeFirstRun          1.859665e-05 secs
#> 37: ad0ea27476c50b66      otherFunctions                 build_site
#> 38: ad0ea27476c50b66      otherFunctions           build_site_local
#> 39: ad0ea27476c50b66      otherFunctions            build_reference
#> 40: ad0ea27476c50b66      otherFunctions                       map_
#> 41: ad0ea27476c50b66      otherFunctions        with_indexed_errors
#> 42: ad0ea27476c50b66      otherFunctions          call_with_cleanup
#> 43: ad0ea27476c50b66      otherFunctions       data_reference_topic
#> 44: ad0ea27476c50b66      otherFunctions               run_examples
#> 45: ad0ea27476c50b66      otherFunctions         highlight_examples
#> 46: ad0ea27476c50b66      otherFunctions                  timing_fn
#> 47: ad0ea27476c50b66      otherFunctions                     handle
#> 48: ad0ea27476c50b66      otherFunctions                        try
#> 49: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
#> 50: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
#> 51: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
#> 52: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
#> 53: deaa37372f85861b          objectName                          b
#> 54: deaa37372f85861b            function                      runif
#> 55: deaa37372f85861b               class                    numeric
#> 56: deaa37372f85861b         object.size                       1008
#> 57: deaa37372f85861b            accessed 2024-04-15 16:17:22.983017
#> 58: deaa37372f85861b             inCloud                      FALSE
#> 59: deaa37372f85861b            fromDisk                      FALSE
#> 60: deaa37372f85861b          resultHash                           
#> 61: deaa37372f85861b   elapsedTimeDigest           0.001523733 secs
#> 62: deaa37372f85861b elapsedTimeFirstRun          1.859665e-05 secs
#> 63: deaa37372f85861b      otherFunctions                 build_site
#> 64: deaa37372f85861b      otherFunctions           build_site_local
#> 65: deaa37372f85861b      otherFunctions            build_reference
#> 66: deaa37372f85861b      otherFunctions                       map_
#> 67: deaa37372f85861b      otherFunctions        with_indexed_errors
#> 68: deaa37372f85861b      otherFunctions          call_with_cleanup
#> 69: deaa37372f85861b      otherFunctions       data_reference_topic
#> 70: deaa37372f85861b      otherFunctions               run_examples
#> 71: deaa37372f85861b      otherFunctions         highlight_examples
#> 72: deaa37372f85861b      otherFunctions                  timing_fn
#> 73: deaa37372f85861b      otherFunctions                     handle
#> 74: deaa37372f85861b      otherFunctions                        try
#> 75: deaa37372f85861b           preDigest         n:7eef4eae85fd9229
#> 76: deaa37372f85861b           preDigest       min:c40c00762a0dac94
#> 77: deaa37372f85861b           preDigest       max:853b1797f54b229c
#> 78: deaa37372f85861b           preDigest      .FUN:881ec847b7161f3c
#>              cacheId              tagKey                   tagValue
#>                    createdDate
#>                         <char>
#>  1: 2024-04-15 16:17:22.996804
#>  2: 2024-04-15 16:17:22.996804
#>  3: 2024-04-15 16:17:22.996804
#>  4: 2024-04-15 16:17:22.996804
#>  5: 2024-04-15 16:17:22.996804
#>  6: 2024-04-15 16:17:22.996804
#>  7: 2024-04-15 16:17:22.996804
#>  8: 2024-04-15 16:17:22.996804
#>  9: 2024-04-15 16:17:22.996804
#> 10: 2024-04-15 16:17:22.996804
#> 11: 2024-04-15 16:17:22.996804
#> 12: 2024-04-15 16:17:22.996804
#> 13: 2024-04-15 16:17:22.996804
#> 14: 2024-04-15 16:17:22.996804
#> 15: 2024-04-15 16:17:22.996804
#> 16: 2024-04-15 16:17:22.996804
#> 17: 2024-04-15 16:17:22.996804
#> 18: 2024-04-15 16:17:22.996804
#> 19: 2024-04-15 16:17:22.996804
#> 20: 2024-04-15 16:17:22.996804
#> 21: 2024-04-15 16:17:22.996804
#> 22: 2024-04-15 16:17:22.996804
#> 23: 2024-04-15 16:17:22.996804
#> 24: 2024-04-15 16:17:22.996804
#> 25: 2024-04-15 16:17:22.996804
#> 26: 2024-04-15 16:17:22.996804
#> 27: 2024-04-15 16:17:22.969902
#> 28: 2024-04-15 16:17:22.969902
#> 29: 2024-04-15 16:17:22.969902
#> 30: 2024-04-15 16:17:22.969902
#> 31: 2024-04-15 16:17:22.969902
#> 32: 2024-04-15 16:17:22.969902
#> 33: 2024-04-15 16:17:22.969902
#> 34: 2024-04-15 16:17:22.969902
#> 35: 2024-04-15 16:17:22.969902
#> 36: 2024-04-15 16:17:22.969902
#> 37: 2024-04-15 16:17:22.969902
#> 38: 2024-04-15 16:17:22.969902
#> 39: 2024-04-15 16:17:22.969902
#> 40: 2024-04-15 16:17:22.969902
#> 41: 2024-04-15 16:17:22.969902
#> 42: 2024-04-15 16:17:22.969902
#> 43: 2024-04-15 16:17:22.969902
#> 44: 2024-04-15 16:17:22.969902
#> 45: 2024-04-15 16:17:22.969902
#> 46: 2024-04-15 16:17:22.969902
#> 47: 2024-04-15 16:17:22.969902
#> 48: 2024-04-15 16:17:22.969902
#> 49: 2024-04-15 16:17:22.969902
#> 50: 2024-04-15 16:17:22.969902
#> 51: 2024-04-15 16:17:22.969902
#> 52: 2024-04-15 16:17:22.969902
#> 53: 2024-04-15 16:17:22.983418
#> 54: 2024-04-15 16:17:22.983418
#> 55: 2024-04-15 16:17:22.983418
#> 56: 2024-04-15 16:17:22.983418
#> 57: 2024-04-15 16:17:22.983418
#> 58: 2024-04-15 16:17:22.983418
#> 59: 2024-04-15 16:17:22.983418
#> 60: 2024-04-15 16:17:22.983418
#> 61: 2024-04-15 16:17:22.983418
#> 62: 2024-04-15 16:17:22.983418
#> 63: 2024-04-15 16:17:22.983418
#> 64: 2024-04-15 16:17:22.983418
#> 65: 2024-04-15 16:17:22.983418
#> 66: 2024-04-15 16:17:22.983418
#> 67: 2024-04-15 16:17:22.983418
#> 68: 2024-04-15 16:17:22.983418
#> 69: 2024-04-15 16:17:22.983418
#> 70: 2024-04-15 16:17:22.983418
#> 71: 2024-04-15 16:17:22.983418
#> 72: 2024-04-15 16:17:22.983418
#> 73: 2024-04-15 16:17:22.983418
#> 74: 2024-04-15 16:17:22.983418
#> 75: 2024-04-15 16:17:22.983418
#> 76: 2024-04-15 16:17:22.983418
#> 77: 2024-04-15 16:17:22.983418
#> 78: 2024-04-15 16:17:22.983418
#>                    createdDate
showCache(tmpDir, userTags = c("^a$")) # regular expression ... "a" exactly
#> 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-04-15 16:17:22.969502
#>  6: ad0ea27476c50b66             inCloud                      FALSE
#>  7: ad0ea27476c50b66            fromDisk                      FALSE
#>  8: ad0ea27476c50b66          resultHash                           
#>  9: ad0ea27476c50b66   elapsedTimeDigest           0.001528978 secs
#> 10: ad0ea27476c50b66 elapsedTimeFirstRun          1.859665e-05 secs
#> 11: ad0ea27476c50b66      otherFunctions                 build_site
#> 12: ad0ea27476c50b66      otherFunctions           build_site_local
#> 13: ad0ea27476c50b66      otherFunctions            build_reference
#> 14: ad0ea27476c50b66      otherFunctions                       map_
#> 15: ad0ea27476c50b66      otherFunctions        with_indexed_errors
#> 16: ad0ea27476c50b66      otherFunctions          call_with_cleanup
#> 17: ad0ea27476c50b66      otherFunctions       data_reference_topic
#> 18: ad0ea27476c50b66      otherFunctions               run_examples
#> 19: ad0ea27476c50b66      otherFunctions         highlight_examples
#> 20: ad0ea27476c50b66      otherFunctions                  timing_fn
#> 21: ad0ea27476c50b66      otherFunctions                     handle
#> 22: ad0ea27476c50b66      otherFunctions                        try
#> 23: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
#> 24: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
#> 25: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
#> 26: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
#>              cacheId              tagKey                   tagValue
#>                    createdDate
#>                         <char>
#>  1: 2024-04-15 16:17:22.969902
#>  2: 2024-04-15 16:17:22.969902
#>  3: 2024-04-15 16:17:22.969902
#>  4: 2024-04-15 16:17:22.969902
#>  5: 2024-04-15 16:17:22.969902
#>  6: 2024-04-15 16:17:22.969902
#>  7: 2024-04-15 16:17:22.969902
#>  8: 2024-04-15 16:17:22.969902
#>  9: 2024-04-15 16:17:22.969902
#> 10: 2024-04-15 16:17:22.969902
#> 11: 2024-04-15 16:17:22.969902
#> 12: 2024-04-15 16:17:22.969902
#> 13: 2024-04-15 16:17:22.969902
#> 14: 2024-04-15 16:17:22.969902
#> 15: 2024-04-15 16:17:22.969902
#> 16: 2024-04-15 16:17:22.969902
#> 17: 2024-04-15 16:17:22.969902
#> 18: 2024-04-15 16:17:22.969902
#> 19: 2024-04-15 16:17:22.969902
#> 20: 2024-04-15 16:17:22.969902
#> 21: 2024-04-15 16:17:22.969902
#> 22: 2024-04-15 16:17:22.969902
#> 23: 2024-04-15 16:17:22.969902
#> 24: 2024-04-15 16:17:22.969902
#> 25: 2024-04-15 16:17:22.969902
#> 26: 2024-04-15 16:17:22.969902
#>                    createdDate

# Fine control of cache elements -- pick out only the large runif object, and remove it
cache1 <- showCache(tmpDir, userTags = c("runif")) # show only cached objects made during runif
#> Cache size: 
#>   Total (including Rasters): 576 bytes
#>   Selected objects (not including Rasters): 576 bytes
toRemove <- cache1[tagKey == "object.size"][as.numeric(tagValue) > 700]$cacheId
clearCache(tmpDir, userTags = toRemove, ask = FALSE)
#> Cache size: 
#>   Total (including Rasters): 0 bytes
#>   Selected objects (not including Rasters): 0 bytes
cacheAfter <- showCache(tmpDir, userTags = c("runif")) # Only the small one is left
#> Cache size: 
#>   Total (including Rasters): 576 bytes
#>   Selected objects (not including Rasters): 576 bytes

data.table::setDTthreads(2)
tmpDir <- file.path(tempdir(), "reproducible_examples", "Cache")
try(clearCache(tmpDir, ask = FALSE), silent = TRUE) # just to make sure it is clear

Cache(rnorm, 1, cachePath = tmpDir)
#> [1] 0.7236408
#> attr(,".Cache")
#> attr(,".Cache")$newCache
#> [1] TRUE
#> 
#> attr(,"tags")
#> [1] "cacheId:422bae4ed2f770cc"
#> attr(,"call")
#> [1] ""
thisTime <- Sys.time()
Cache(rnorm, 2, cachePath = tmpDir)
#> [1] 0.6595800 0.6393946
#> attr(,".Cache")
#> attr(,".Cache")$newCache
#> [1] TRUE
#> 
#> attr(,"tags")
#> [1] "cacheId:66299c88b3924bf4"
#> attr(,"call")
#> [1] ""
Cache(rnorm, 3, cachePath = tmpDir)
#> [1] -1.3498955  0.8029009  0.3674511
#> attr(,".Cache")
#> attr(,".Cache")$newCache
#> [1] TRUE
#> 
#> attr(,"tags")
#> [1] "cacheId:6724ef06570739aa"
#> attr(,"call")
#> [1] ""
Cache(rnorm, 4, cachePath = tmpDir)
#> [1]  0.5641829  0.2076233 -1.0011099 -0.5194643
#> attr(,".Cache")
#> attr(,".Cache")$newCache
#> [1] TRUE
#> 
#> attr(,"tags")
#> [1] "cacheId:ad0ea27476c50b66"
#> attr(,"call")
#> [1] ""
showCache(x = tmpDir) # shows all 4 entries
#> Cache size: 
#>   Total (including Rasters): 998 bytes
#>   Selected objects (not including Rasters): 998 bytes
#>               cacheId              tagKey                   tagValue
#>                <char>              <char>                     <char>
#>   1: 422bae4ed2f770cc            function                      rnorm
#>   2: 422bae4ed2f770cc               class                    numeric
#>   3: 422bae4ed2f770cc         object.size                        984
#>   4: 422bae4ed2f770cc            accessed 2024-04-15 16:17:23.071715
#>   5: 422bae4ed2f770cc             inCloud                      FALSE
#>   6: 422bae4ed2f770cc            fromDisk                      FALSE
#>   7: 422bae4ed2f770cc          resultHash                           
#>   8: 422bae4ed2f770cc   elapsedTimeDigest           0.001675367 secs
#>   9: 422bae4ed2f770cc elapsedTimeFirstRun          2.241135e-05 secs
#>  10: 422bae4ed2f770cc      otherFunctions                 build_site
#>  11: 422bae4ed2f770cc      otherFunctions           build_site_local
#>  12: 422bae4ed2f770cc      otherFunctions            build_reference
#>  13: 422bae4ed2f770cc      otherFunctions                       map_
#>  14: 422bae4ed2f770cc      otherFunctions        with_indexed_errors
#>  15: 422bae4ed2f770cc      otherFunctions          call_with_cleanup
#>  16: 422bae4ed2f770cc      otherFunctions       data_reference_topic
#>  17: 422bae4ed2f770cc      otherFunctions               run_examples
#>  18: 422bae4ed2f770cc      otherFunctions         highlight_examples
#>  19: 422bae4ed2f770cc      otherFunctions                  timing_fn
#>  20: 422bae4ed2f770cc      otherFunctions                     handle
#>  21: 422bae4ed2f770cc      otherFunctions                        try
#>  22: 422bae4ed2f770cc           preDigest         n:853b1797f54b229c
#>  23: 422bae4ed2f770cc           preDigest      mean:c40c00762a0dac94
#>  24: 422bae4ed2f770cc           preDigest        sd:853b1797f54b229c
#>  25: 422bae4ed2f770cc           preDigest      .FUN:4f604aa46882b368
#>  26: 66299c88b3924bf4            function                      rnorm
#>  27: 66299c88b3924bf4               class                    numeric
#>  28: 66299c88b3924bf4         object.size                        992
#>  29: 66299c88b3924bf4            accessed 2024-04-15 16:17:23.086388
#>  30: 66299c88b3924bf4             inCloud                      FALSE
#>  31: 66299c88b3924bf4            fromDisk                      FALSE
#>  32: 66299c88b3924bf4          resultHash                           
#>  33: 66299c88b3924bf4   elapsedTimeDigest           0.001607895 secs
#>  34: 66299c88b3924bf4 elapsedTimeFirstRun          2.002716e-05 secs
#>  35: 66299c88b3924bf4      otherFunctions                 build_site
#>  36: 66299c88b3924bf4      otherFunctions           build_site_local
#>  37: 66299c88b3924bf4      otherFunctions            build_reference
#>  38: 66299c88b3924bf4      otherFunctions                       map_
#>  39: 66299c88b3924bf4      otherFunctions        with_indexed_errors
#>  40: 66299c88b3924bf4      otherFunctions          call_with_cleanup
#>  41: 66299c88b3924bf4      otherFunctions       data_reference_topic
#>  42: 66299c88b3924bf4      otherFunctions               run_examples
#>  43: 66299c88b3924bf4      otherFunctions         highlight_examples
#>  44: 66299c88b3924bf4      otherFunctions                  timing_fn
#>  45: 66299c88b3924bf4      otherFunctions                     handle
#>  46: 66299c88b3924bf4      otherFunctions                        try
#>  47: 66299c88b3924bf4           preDigest         n:82dc709f2b91918a
#>  48: 66299c88b3924bf4           preDigest      mean:c40c00762a0dac94
#>  49: 66299c88b3924bf4           preDigest        sd:853b1797f54b229c
#>  50: 66299c88b3924bf4           preDigest      .FUN:4f604aa46882b368
#>  51: 6724ef06570739aa            function                      rnorm
#>  52: 6724ef06570739aa               class                    numeric
#>  53: 6724ef06570739aa         object.size                       1008
#>  54: 6724ef06570739aa            accessed 2024-04-15 16:17:23.100634
#>  55: 6724ef06570739aa             inCloud                      FALSE
#>  56: 6724ef06570739aa            fromDisk                      FALSE
#>  57: 6724ef06570739aa          resultHash                           
#>  58: 6724ef06570739aa   elapsedTimeDigest           0.001522541 secs
#>  59: 6724ef06570739aa elapsedTimeFirstRun          1.907349e-05 secs
#>  60: 6724ef06570739aa      otherFunctions                 build_site
#>  61: 6724ef06570739aa      otherFunctions           build_site_local
#>  62: 6724ef06570739aa      otherFunctions            build_reference
#>  63: 6724ef06570739aa      otherFunctions                       map_
#>  64: 6724ef06570739aa      otherFunctions        with_indexed_errors
#>  65: 6724ef06570739aa      otherFunctions          call_with_cleanup
#>  66: 6724ef06570739aa      otherFunctions       data_reference_topic
#>  67: 6724ef06570739aa      otherFunctions               run_examples
#>  68: 6724ef06570739aa      otherFunctions         highlight_examples
#>  69: 6724ef06570739aa      otherFunctions                  timing_fn
#>  70: 6724ef06570739aa      otherFunctions                     handle
#>  71: 6724ef06570739aa      otherFunctions                        try
#>  72: 6724ef06570739aa           preDigest         n:7f12988bd88a0fb8
#>  73: 6724ef06570739aa           preDigest      mean:c40c00762a0dac94
#>  74: 6724ef06570739aa           preDigest        sd:853b1797f54b229c
#>  75: 6724ef06570739aa           preDigest      .FUN:4f604aa46882b368
#>  76: ad0ea27476c50b66            function                      rnorm
#>  77: ad0ea27476c50b66               class                    numeric
#>  78: ad0ea27476c50b66         object.size                       1008
#>  79: ad0ea27476c50b66            accessed 2024-04-15 16:17:23.114442
#>  80: ad0ea27476c50b66             inCloud                      FALSE
#>  81: ad0ea27476c50b66            fromDisk                      FALSE
#>  82: ad0ea27476c50b66          resultHash                           
#>  83: ad0ea27476c50b66   elapsedTimeDigest           0.001528978 secs
#>  84: ad0ea27476c50b66 elapsedTimeFirstRun          1.859665e-05 secs
#>  85: ad0ea27476c50b66      otherFunctions                 build_site
#>  86: ad0ea27476c50b66      otherFunctions           build_site_local
#>  87: ad0ea27476c50b66      otherFunctions            build_reference
#>  88: ad0ea27476c50b66      otherFunctions                       map_
#>  89: ad0ea27476c50b66      otherFunctions        with_indexed_errors
#>  90: ad0ea27476c50b66      otherFunctions          call_with_cleanup
#>  91: ad0ea27476c50b66      otherFunctions       data_reference_topic
#>  92: ad0ea27476c50b66      otherFunctions               run_examples
#>  93: ad0ea27476c50b66      otherFunctions         highlight_examples
#>  94: ad0ea27476c50b66      otherFunctions                  timing_fn
#>  95: ad0ea27476c50b66      otherFunctions                     handle
#>  96: ad0ea27476c50b66      otherFunctions                        try
#>  97: ad0ea27476c50b66           preDigest         n:7eef4eae85fd9229
#>  98: ad0ea27476c50b66           preDigest      mean:c40c00762a0dac94
#>  99: ad0ea27476c50b66           preDigest        sd:853b1797f54b229c
#> 100: ad0ea27476c50b66           preDigest      .FUN:4f604aa46882b368
#>               cacheId              tagKey                   tagValue
#>                     createdDate
#>                          <char>
#>   1: 2024-04-15 16:17:23.072192
#>   2: 2024-04-15 16:17:23.072192
#>   3: 2024-04-15 16:17:23.072192
#>   4: 2024-04-15 16:17:23.072192
#>   5: 2024-04-15 16:17:23.072192
#>   6: 2024-04-15 16:17:23.072192
#>   7: 2024-04-15 16:17:23.072192
#>   8: 2024-04-15 16:17:23.072192
#>   9: 2024-04-15 16:17:23.072192
#>  10: 2024-04-15 16:17:23.072192
#>  11: 2024-04-15 16:17:23.072192
#>  12: 2024-04-15 16:17:23.072192
#>  13: 2024-04-15 16:17:23.072192
#>  14: 2024-04-15 16:17:23.072192
#>  15: 2024-04-15 16:17:23.072192
#>  16: 2024-04-15 16:17:23.072192
#>  17: 2024-04-15 16:17:23.072192
#>  18: 2024-04-15 16:17:23.072192
#>  19: 2024-04-15 16:17:23.072192
#>  20: 2024-04-15 16:17:23.072192
#>  21: 2024-04-15 16:17:23.072192
#>  22: 2024-04-15 16:17:23.072192
#>  23: 2024-04-15 16:17:23.072192
#>  24: 2024-04-15 16:17:23.072192
#>  25: 2024-04-15 16:17:23.072192
#>  26: 2024-04-15 16:17:23.086794
#>  27: 2024-04-15 16:17:23.086794
#>  28: 2024-04-15 16:17:23.086794
#>  29: 2024-04-15 16:17:23.086794
#>  30: 2024-04-15 16:17:23.086794
#>  31: 2024-04-15 16:17:23.086794
#>  32: 2024-04-15 16:17:23.086794
#>  33: 2024-04-15 16:17:23.086794
#>  34: 2024-04-15 16:17:23.086794
#>  35: 2024-04-15 16:17:23.086794
#>  36: 2024-04-15 16:17:23.086794
#>  37: 2024-04-15 16:17:23.086794
#>  38: 2024-04-15 16:17:23.086794
#>  39: 2024-04-15 16:17:23.086794
#>  40: 2024-04-15 16:17:23.086794
#>  41: 2024-04-15 16:17:23.086794
#>  42: 2024-04-15 16:17:23.086794
#>  43: 2024-04-15 16:17:23.086794
#>  44: 2024-04-15 16:17:23.086794
#>  45: 2024-04-15 16:17:23.086794
#>  46: 2024-04-15 16:17:23.086794
#>  47: 2024-04-15 16:17:23.086794
#>  48: 2024-04-15 16:17:23.086794
#>  49: 2024-04-15 16:17:23.086794
#>  50: 2024-04-15 16:17:23.086794
#>  51: 2024-04-15 16:17:23.101035
#>  52: 2024-04-15 16:17:23.101035
#>  53: 2024-04-15 16:17:23.101035
#>  54: 2024-04-15 16:17:23.101035
#>  55: 2024-04-15 16:17:23.101035
#>  56: 2024-04-15 16:17:23.101035
#>  57: 2024-04-15 16:17:23.101035
#>  58: 2024-04-15 16:17:23.101035
#>  59: 2024-04-15 16:17:23.101035
#>  60: 2024-04-15 16:17:23.101035
#>  61: 2024-04-15 16:17:23.101035
#>  62: 2024-04-15 16:17:23.101035
#>  63: 2024-04-15 16:17:23.101035
#>  64: 2024-04-15 16:17:23.101035
#>  65: 2024-04-15 16:17:23.101035
#>  66: 2024-04-15 16:17:23.101035
#>  67: 2024-04-15 16:17:23.101035
#>  68: 2024-04-15 16:17:23.101035
#>  69: 2024-04-15 16:17:23.101035
#>  70: 2024-04-15 16:17:23.101035
#>  71: 2024-04-15 16:17:23.101035
#>  72: 2024-04-15 16:17:23.101035
#>  73: 2024-04-15 16:17:23.101035
#>  74: 2024-04-15 16:17:23.101035
#>  75: 2024-04-15 16:17:23.101035
#>  76: 2024-04-15 16:17:23.114844
#>  77: 2024-04-15 16:17:23.114844
#>  78: 2024-04-15 16:17:23.114844
#>  79: 2024-04-15 16:17:23.114844
#>  80: 2024-04-15 16:17:23.114844
#>  81: 2024-04-15 16:17:23.114844
#>  82: 2024-04-15 16:17:23.114844
#>  83: 2024-04-15 16:17:23.114844
#>  84: 2024-04-15 16:17:23.114844
#>  85: 2024-04-15 16:17:23.114844
#>  86: 2024-04-15 16:17:23.114844
#>  87: 2024-04-15 16:17:23.114844
#>  88: 2024-04-15 16:17:23.114844
#>  89: 2024-04-15 16:17:23.114844
#>  90: 2024-04-15 16:17:23.114844
#>  91: 2024-04-15 16:17:23.114844
#>  92: 2024-04-15 16:17:23.114844
#>  93: 2024-04-15 16:17:23.114844
#>  94: 2024-04-15 16:17:23.114844
#>  95: 2024-04-15 16:17:23.114844
#>  96: 2024-04-15 16:17:23.114844
#>  97: 2024-04-15 16:17:23.114844
#>  98: 2024-04-15 16:17:23.114844
#>  99: 2024-04-15 16:17:23.114844
#> 100: 2024-04-15 16:17:23.114844
#>                     createdDate
cc(ask = FALSE, x = tmpDir)
#> No time provided; removing the most recent entry to the Cache
#> Cache size: 
#>   Total (including Rasters): 252 bytes
#>   Selected objects (not including Rasters): 252 bytes
showCache(x = tmpDir) # most recent is gone
#> Cache size: 
#>   Total (including Rasters): 746 bytes
#>   Selected objects (not including Rasters): 746 bytes
#>              cacheId              tagKey                   tagValue
#>               <char>              <char>                     <char>
#>  1: 422bae4ed2f770cc            function                      rnorm
#>  2: 422bae4ed2f770cc               class                    numeric
#>  3: 422bae4ed2f770cc         object.size                        984
#>  4: 422bae4ed2f770cc            accessed 2024-04-15 16:17:23.071715
#>  5: 422bae4ed2f770cc             inCloud                      FALSE
#>  6: 422bae4ed2f770cc            fromDisk                      FALSE
#>  7: 422bae4ed2f770cc          resultHash                           
#>  8: 422bae4ed2f770cc   elapsedTimeDigest           0.001675367 secs
#>  9: 422bae4ed2f770cc elapsedTimeFirstRun          2.241135e-05 secs
#> 10: 422bae4ed2f770cc      otherFunctions                 build_site
#> 11: 422bae4ed2f770cc      otherFunctions           build_site_local
#> 12: 422bae4ed2f770cc      otherFunctions            build_reference
#> 13: 422bae4ed2f770cc      otherFunctions                       map_
#> 14: 422bae4ed2f770cc      otherFunctions        with_indexed_errors
#> 15: 422bae4ed2f770cc      otherFunctions          call_with_cleanup
#> 16: 422bae4ed2f770cc      otherFunctions       data_reference_topic
#> 17: 422bae4ed2f770cc      otherFunctions               run_examples
#> 18: 422bae4ed2f770cc      otherFunctions         highlight_examples
#> 19: 422bae4ed2f770cc      otherFunctions                  timing_fn
#> 20: 422bae4ed2f770cc      otherFunctions                     handle
#> 21: 422bae4ed2f770cc      otherFunctions                        try
#> 22: 422bae4ed2f770cc           preDigest         n:853b1797f54b229c
#> 23: 422bae4ed2f770cc           preDigest      mean:c40c00762a0dac94
#> 24: 422bae4ed2f770cc           preDigest        sd:853b1797f54b229c
#> 25: 422bae4ed2f770cc           preDigest      .FUN:4f604aa46882b368
#> 26: 66299c88b3924bf4            function                      rnorm
#> 27: 66299c88b3924bf4               class                    numeric
#> 28: 66299c88b3924bf4         object.size                        992
#> 29: 66299c88b3924bf4            accessed 2024-04-15 16:17:23.086388
#> 30: 66299c88b3924bf4             inCloud                      FALSE
#> 31: 66299c88b3924bf4            fromDisk                      FALSE
#> 32: 66299c88b3924bf4          resultHash                           
#> 33: 66299c88b3924bf4   elapsedTimeDigest           0.001607895 secs
#> 34: 66299c88b3924bf4 elapsedTimeFirstRun          2.002716e-05 secs
#> 35: 66299c88b3924bf4      otherFunctions                 build_site
#> 36: 66299c88b3924bf4      otherFunctions           build_site_local
#> 37: 66299c88b3924bf4      otherFunctions            build_reference
#> 38: 66299c88b3924bf4      otherFunctions                       map_
#> 39: 66299c88b3924bf4      otherFunctions        with_indexed_errors
#> 40: 66299c88b3924bf4      otherFunctions          call_with_cleanup
#> 41: 66299c88b3924bf4      otherFunctions       data_reference_topic
#> 42: 66299c88b3924bf4      otherFunctions               run_examples
#> 43: 66299c88b3924bf4      otherFunctions         highlight_examples
#> 44: 66299c88b3924bf4      otherFunctions                  timing_fn
#> 45: 66299c88b3924bf4      otherFunctions                     handle
#> 46: 66299c88b3924bf4      otherFunctions                        try
#> 47: 66299c88b3924bf4           preDigest         n:82dc709f2b91918a
#> 48: 66299c88b3924bf4           preDigest      mean:c40c00762a0dac94
#> 49: 66299c88b3924bf4           preDigest        sd:853b1797f54b229c
#> 50: 66299c88b3924bf4           preDigest      .FUN:4f604aa46882b368
#> 51: 6724ef06570739aa            function                      rnorm
#> 52: 6724ef06570739aa               class                    numeric
#> 53: 6724ef06570739aa         object.size                       1008
#> 54: 6724ef06570739aa            accessed 2024-04-15 16:17:23.100634
#> 55: 6724ef06570739aa             inCloud                      FALSE
#> 56: 6724ef06570739aa            fromDisk                      FALSE
#> 57: 6724ef06570739aa          resultHash                           
#> 58: 6724ef06570739aa   elapsedTimeDigest           0.001522541 secs
#> 59: 6724ef06570739aa elapsedTimeFirstRun          1.907349e-05 secs
#> 60: 6724ef06570739aa      otherFunctions                 build_site
#> 61: 6724ef06570739aa      otherFunctions           build_site_local
#> 62: 6724ef06570739aa      otherFunctions            build_reference
#> 63: 6724ef06570739aa      otherFunctions                       map_
#> 64: 6724ef06570739aa      otherFunctions        with_indexed_errors
#> 65: 6724ef06570739aa      otherFunctions          call_with_cleanup
#> 66: 6724ef06570739aa      otherFunctions       data_reference_topic
#> 67: 6724ef06570739aa      otherFunctions               run_examples
#> 68: 6724ef06570739aa      otherFunctions         highlight_examples
#> 69: 6724ef06570739aa      otherFunctions                  timing_fn
#> 70: 6724ef06570739aa      otherFunctions                     handle
#> 71: 6724ef06570739aa      otherFunctions                        try
#> 72: 6724ef06570739aa           preDigest         n:7f12988bd88a0fb8
#> 73: 6724ef06570739aa           preDigest      mean:c40c00762a0dac94
#> 74: 6724ef06570739aa           preDigest        sd:853b1797f54b229c
#> 75: 6724ef06570739aa           preDigest      .FUN:4f604aa46882b368
#>              cacheId              tagKey                   tagValue
#>                    createdDate
#>                         <char>
#>  1: 2024-04-15 16:17:23.072192
#>  2: 2024-04-15 16:17:23.072192
#>  3: 2024-04-15 16:17:23.072192
#>  4: 2024-04-15 16:17:23.072192
#>  5: 2024-04-15 16:17:23.072192
#>  6: 2024-04-15 16:17:23.072192
#>  7: 2024-04-15 16:17:23.072192
#>  8: 2024-04-15 16:17:23.072192
#>  9: 2024-04-15 16:17:23.072192
#> 10: 2024-04-15 16:17:23.072192
#> 11: 2024-04-15 16:17:23.072192
#> 12: 2024-04-15 16:17:23.072192
#> 13: 2024-04-15 16:17:23.072192
#> 14: 2024-04-15 16:17:23.072192
#> 15: 2024-04-15 16:17:23.072192
#> 16: 2024-04-15 16:17:23.072192
#> 17: 2024-04-15 16:17:23.072192
#> 18: 2024-04-15 16:17:23.072192
#> 19: 2024-04-15 16:17:23.072192
#> 20: 2024-04-15 16:17:23.072192
#> 21: 2024-04-15 16:17:23.072192
#> 22: 2024-04-15 16:17:23.072192
#> 23: 2024-04-15 16:17:23.072192
#> 24: 2024-04-15 16:17:23.072192
#> 25: 2024-04-15 16:17:23.072192
#> 26: 2024-04-15 16:17:23.086794
#> 27: 2024-04-15 16:17:23.086794
#> 28: 2024-04-15 16:17:23.086794
#> 29: 2024-04-15 16:17:23.086794
#> 30: 2024-04-15 16:17:23.086794
#> 31: 2024-04-15 16:17:23.086794
#> 32: 2024-04-15 16:17:23.086794
#> 33: 2024-04-15 16:17:23.086794
#> 34: 2024-04-15 16:17:23.086794
#> 35: 2024-04-15 16:17:23.086794
#> 36: 2024-04-15 16:17:23.086794
#> 37: 2024-04-15 16:17:23.086794
#> 38: 2024-04-15 16:17:23.086794
#> 39: 2024-04-15 16:17:23.086794
#> 40: 2024-04-15 16:17:23.086794
#> 41: 2024-04-15 16:17:23.086794
#> 42: 2024-04-15 16:17:23.086794
#> 43: 2024-04-15 16:17:23.086794
#> 44: 2024-04-15 16:17:23.086794
#> 45: 2024-04-15 16:17:23.086794
#> 46: 2024-04-15 16:17:23.086794
#> 47: 2024-04-15 16:17:23.086794
#> 48: 2024-04-15 16:17:23.086794
#> 49: 2024-04-15 16:17:23.086794
#> 50: 2024-04-15 16:17:23.086794
#> 51: 2024-04-15 16:17:23.101035
#> 52: 2024-04-15 16:17:23.101035
#> 53: 2024-04-15 16:17:23.101035
#> 54: 2024-04-15 16:17:23.101035
#> 55: 2024-04-15 16:17:23.101035
#> 56: 2024-04-15 16:17:23.101035
#> 57: 2024-04-15 16:17:23.101035
#> 58: 2024-04-15 16:17:23.101035
#> 59: 2024-04-15 16:17:23.101035
#> 60: 2024-04-15 16:17:23.101035
#> 61: 2024-04-15 16:17:23.101035
#> 62: 2024-04-15 16:17:23.101035
#> 63: 2024-04-15 16:17:23.101035
#> 64: 2024-04-15 16:17:23.101035
#> 65: 2024-04-15 16:17:23.101035
#> 66: 2024-04-15 16:17:23.101035
#> 67: 2024-04-15 16:17:23.101035
#> 68: 2024-04-15 16:17:23.101035
#> 69: 2024-04-15 16:17:23.101035
#> 70: 2024-04-15 16:17:23.101035
#> 71: 2024-04-15 16:17:23.101035
#> 72: 2024-04-15 16:17:23.101035
#> 73: 2024-04-15 16:17:23.101035
#> 74: 2024-04-15 16:17:23.101035
#> 75: 2024-04-15 16:17:23.101035
#>                    createdDate
cc(thisTime, ask = FALSE, x = tmpDir)
#> Cache size: 
#>   Total (including Rasters): 500 bytes
#>   Selected objects (not including Rasters): 500 bytes
showCache(x = tmpDir) # all those after thisTime gone, i.e., only 1 left
#> Cache size: 
#>   Total (including Rasters): 246 bytes
#>   Selected objects (not including Rasters): 246 bytes
#>              cacheId              tagKey                   tagValue
#>               <char>              <char>                     <char>
#>  1: 422bae4ed2f770cc            function                      rnorm
#>  2: 422bae4ed2f770cc               class                    numeric
#>  3: 422bae4ed2f770cc         object.size                        984
#>  4: 422bae4ed2f770cc            accessed 2024-04-15 16:17:23.071715
#>  5: 422bae4ed2f770cc             inCloud                      FALSE
#>  6: 422bae4ed2f770cc            fromDisk                      FALSE
#>  7: 422bae4ed2f770cc          resultHash                           
#>  8: 422bae4ed2f770cc   elapsedTimeDigest           0.001675367 secs
#>  9: 422bae4ed2f770cc elapsedTimeFirstRun          2.241135e-05 secs
#> 10: 422bae4ed2f770cc      otherFunctions                 build_site
#> 11: 422bae4ed2f770cc      otherFunctions           build_site_local
#> 12: 422bae4ed2f770cc      otherFunctions            build_reference
#> 13: 422bae4ed2f770cc      otherFunctions                       map_
#> 14: 422bae4ed2f770cc      otherFunctions        with_indexed_errors
#> 15: 422bae4ed2f770cc      otherFunctions          call_with_cleanup
#> 16: 422bae4ed2f770cc      otherFunctions       data_reference_topic
#> 17: 422bae4ed2f770cc      otherFunctions               run_examples
#> 18: 422bae4ed2f770cc      otherFunctions         highlight_examples
#> 19: 422bae4ed2f770cc      otherFunctions                  timing_fn
#> 20: 422bae4ed2f770cc      otherFunctions                     handle
#> 21: 422bae4ed2f770cc      otherFunctions                        try
#> 22: 422bae4ed2f770cc           preDigest         n:853b1797f54b229c
#> 23: 422bae4ed2f770cc           preDigest      mean:c40c00762a0dac94
#> 24: 422bae4ed2f770cc           preDigest        sd:853b1797f54b229c
#> 25: 422bae4ed2f770cc           preDigest      .FUN:4f604aa46882b368
#>              cacheId              tagKey                   tagValue
#>                    createdDate
#>                         <char>
#>  1: 2024-04-15 16:17:23.072192
#>  2: 2024-04-15 16:17:23.072192
#>  3: 2024-04-15 16:17:23.072192
#>  4: 2024-04-15 16:17:23.072192
#>  5: 2024-04-15 16:17:23.072192
#>  6: 2024-04-15 16:17:23.072192
#>  7: 2024-04-15 16:17:23.072192
#>  8: 2024-04-15 16:17:23.072192
#>  9: 2024-04-15 16:17:23.072192
#> 10: 2024-04-15 16:17:23.072192
#> 11: 2024-04-15 16:17:23.072192
#> 12: 2024-04-15 16:17:23.072192
#> 13: 2024-04-15 16:17:23.072192
#> 14: 2024-04-15 16:17:23.072192
#> 15: 2024-04-15 16:17:23.072192
#> 16: 2024-04-15 16:17:23.072192
#> 17: 2024-04-15 16:17:23.072192
#> 18: 2024-04-15 16:17:23.072192
#> 19: 2024-04-15 16:17:23.072192
#> 20: 2024-04-15 16:17:23.072192
#> 21: 2024-04-15 16:17:23.072192
#> 22: 2024-04-15 16:17:23.072192
#> 23: 2024-04-15 16:17:23.072192
#> 24: 2024-04-15 16:17:23.072192
#> 25: 2024-04-15 16:17:23.072192
#>                    createdDate
cc(ask = FALSE, x = tmpDir) # Cache is
#> No time provided; removing the most recent entry to the Cache
#> Cache size: 
#>   Total (including Rasters): 246 bytes
#>   Selected objects (not including Rasters): 246 bytes
cc(ask = FALSE, x = tmpDir) # Cache is already empty
#> No time provided; removing the most recent entry to the Cache
#> Cache already empty