Skip to main content
View module source on GitHub

MaximCache

Abstract base class for caching implementations in Maxim. This class defines the interface for cache operations including getting, setting, deleting cache entries, and retrieving all keys. Concrete implementations should inherit from this class and provide actual storage mechanisms.

get_all_keys

Retrieve all keys currently stored in the cache. Returns:

get

Retrieve a value from the cache by its key. Arguments: Returns:

set

Store a key-value pair in the cache. Arguments:

delete

Remove a key-value pair from the cache. Arguments: