CacheGCResult#
- class scikitplot.cython.CacheGCResult(cache_root=<factory>, deleted_keys=<factory>, skipped_pinned_keys=<factory>, skipped_missing_keys=<factory>, skipped_active_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.
- skipped_active_keysSequence[str]
Cache keys preserved because a build lock was held (an active build) or the entry became pinned during the GC transaction.
- freed_bytesint
Estimated bytes freed (best effort, computed pre-delete).
- Parameters: