Cache
-
class Cache
Bases: ABC
Methods Summary
Methods Documentation
-
abstract delete(key)
- Return type:
None
-
abstract exists(key)
- Return type:
bool
-
abstract get(key)
- Return type:
Optional[Any]
-
abstract get_all()
- Return type:
list[tuple[str, Any]]
-
abstract set(key, value)
- Return type:
None