Display status of all locally cached datasets. Uses relaxed staleness thresholds (2x update frequency) to identify datasets that may benefit from updating.
Examples
# \donttest{
# Check which datasets might benefit from updating
check_cache_status()
#> Cache directory does not exist yet
#> No cached datasets found
# Get status table for programmatic use
status <- check_cache_status(verbose = FALSE)
#> Cache directory does not exist yet
old_datasets <- status[status$age_days > 30, ]
#> Warning: Unknown or uninitialised column: `age_days`.
# }