Skip to contents

[Experimental]

Returns information about current cache usage

Usage

curator_cache_stats()

Value

List with cache statistics (entries, size_bytes, size_mb)

Examples

if (FALSE) { # \dontrun{
# Check current cache usage
stats <- curator_cache_stats()
cat("Cached entries:", stats$entries, "\n")
cat("Memory usage:", stats$size_mb, "MB\n")
} # }