gisco_set_cache_dir {giscoR} | R Documentation |
Set your giscoR cache dir
Description
This function will store your cache_dir
path on your local machine and
would load it for future sessions. Type Sys.getenv("GISCO_CACHE_DIR")
to
find your cached path or use gisco_detect_cache_dir()
.
Alternatively, you can store the cache_dir
manually with the following
options:
Run
Sys.setenv(GISCO_CACHE_DIR = "cache_dir")
. You would need to run this command on each session (Similar toinstall = FALSE
).Write this line on your
.Renviron
file:GISCO_CACHE_DIR = "value_for_cache_dir"
(same behavior thaninstall = TRUE
). This would store yourcache_dir
permanently. See alsousethis::edit_r_environ()
.
Usage
gisco_set_cache_dir(
cache_dir,
overwrite = FALSE,
install = FALSE,
verbose = TRUE
)
gisco_detect_cache_dir(...)
Arguments
cache_dir |
A path to a cache directory. On missing value the function
would store the cached files on a temporary dir (See |
overwrite |
If this is set to |
install |
If |
verbose |
Logical, displays information. Useful for debugging,
default is |
... |
Ignored |
Value
gisco_set_cache_dir()
returns an (invisible) character with the path to
your cache_dir
, but it is mainly called for its side effect.
gisco_detect_cache_dir()
returns the path to the cache_dir
used in this
session.
See Also
Other cache utilities:
gisco_clear_cache()
Examples
# Don't run this! It would modify your current state
## Not run:
gisco_set_cache_dir(verbose = TRUE)
## End(Not run)
Sys.getenv("GISCO_CACHE_DIR")
gisco_detect_cache_dir()