Skip to contents

Display status of all locally cached datasets. Uses relaxed staleness thresholds (2x update frequency) to identify datasets that may benefit from updating.

Usage

check_cache_status(verbose = TRUE)

Arguments

verbose

Logical. Show detailed formatted output (default: TRUE)

Value

Tibble with cache status information (invisibly)

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`.
# }