We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create an engine to update historical data in cache.
Maybe the binary data, already processed inside a data.frame, could be saved in a SQLite database like a BLOB.
data.frame
Considering that all data downloaded is indexed to a reference date, one alternative is: update the cache with all missing reference dates.
Example:
update_cache(template) #> Updating <template> cache with <n> dates
When the cache is empty
update_cache(template) #> x Error no cache for template <template>
check_cache(template) #> cache for <template> is up to date
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create an engine to update historical data in cache.
Maybe the binary data, already processed inside a
data.frame
, could be saved in a SQLite database like a BLOB.Considering that all data downloaded is indexed to a reference date, one alternative is: update the cache with all missing reference dates.
Example:
When the cache is empty
The text was updated successfully, but these errors were encountered: