See also
Other cache-utils:
cache-utils,
curator_cache_clear(),
curator_cache_stats()
Examples
if (FALSE) { # \dontrun{
# Disable caching temporarily
old_config <- curator_cache_config(enabled = FALSE)
# ... do work without caching ...
# Restore previous settings
do.call(curator_cache_config, old_config)
# Increase TTL to 10 minutes
curator_cache_config(ttl_secs = 600)
# Limit cache to 50 entries
curator_cache_config(max_entries = 50)
} # }
