CacheGCResult#
- class scikitplot.cython.CacheGCResult(cache_root=<factory>, deleted_keys=<factory>, skipped_pinned_keys=<factory>, skipped_missing_keys=<factory>, freed_bytes=0)[source]#
Result of a cache garbage-collection operation.
- Parameters:
- cache_rootpathlib.Path
Cache root directory.
- deleted_keysSequence[str]
Cache keys deleted (hex digests).
- skipped_pinned_keysSequence[str]
Cache keys preserved because they are pinned.
- skipped_missing_keysSequence[str]
Cache keys requested for deletion but missing on disk.
- freed_bytesint
Estimated bytes freed (best effort, computed pre-delete).
- Parameters: