CacheStats#
- class scikitplot.cython.CacheStats(cache_root=<factory>, n_modules=0, n_packages=0, total_bytes=0, pinned_aliases=0, pinned_keys=0, newest_mtime_utc=None, oldest_mtime_utc=None)[source]#
Cache statistics for the compiled-artifact cache root.
- Parameters:
- cache_rootpathlib.Path
Cache root directory.
- n_modulesint
Number of module entries (
kind == 'module').- n_packagesint
Number of package entries (
kind == 'package').- total_bytesint
Total disk usage in bytes for all entries.
- pinned_aliasesint
Number of pin aliases in the pin registry.
- pinned_keysint
Number of unique pinned keys in the pin registry.
- newest_mtime_utcstr or None
UTC timestamp (
...Z) of the newest entry’s last-modified time.- oldest_mtime_utcstr or None
UTC timestamp (
...Z) of the oldest entry’s last-modified time.
- Parameters: