Reset the results of API calls that are currently cached in memory.
Details
eia_clear_cache()
clears the entire cache. The other functions clear the
cache associated with specific endpoints.
Examples
if (FALSE) { # \dontrun{
key <- Sys.getenv("EIA_KEY") # your stored API key
system.time(eia_dir(key))
system.time(eia_dir(key))
eia_clear_cache()
system.time(eia_dir(key))
} # }