Note
This page is a reference documentation. It only explains the class signature, and not how to use it. Please refer to the user guide for the big picture.
biolearn.cache.NoCache¶
- class biolearn.cache.NoCache¶
A no-op cache implementation (always misses).
- __init__()¶
- get(key: str, category: str, version: str) Any ¶
Retrieve a cache entry.
- Parameters:
key – Unique key identifying the cache entry.
category – Cache category name.
version – Version string for invalidation.
- Returns:
None always, indicating a cache miss.