Skip to contents

Reports the number of entries currently held in each memoization cache, along with whether the cache is enabled and any configured entry bound.

Usage

rurl_cache_info()

Value

A data.frame with one row per cache (full_parse, puny_encode, puny_decode) and columns entries, enabled, and max_entries.

Examples

get_domain("https://www.example.com")
#> [1] "example.com"
rurl_cache_info()
#>         cache entries enabled max_entries
#> 1  full_parse      61    TRUE       10000
#> 2 puny_encode       2   FALSE         Inf
#> 3 puny_decode       0    TRUE         Inf