Generate a flat text log file to represent the state of the cache.
Source:R/deprecated.R
drake_cache_log_file.Rd
Deprecated on 2019-03-09.
Arguments
- file
character scalar, name of the flat text log file.
- path
Path to a
drake
cache (usually a hidden.drake/
folder) orNULL
.- search
Deprecated.
- cache
drake cache. See
new_cache()
. If supplied,path
is ignored.- verbose
Deprecated on 2019-09-11.
- jobs
Number of jobs/workers for parallel processing.
- targets_only
Logical, whether to output information only on the targets in your workflow plan data frame. If
targets_only
isFALSE
, the output will include the hashes of both targets and imports.
Details
Calling this function to create a log file and later calling
make()
makes the log file out of date. Therefore, we recommend using
make()
with the cache_log_file
argument to create the cache log. This
way ensures that the log is always up to date with make()
results.