MaximCache
get_all_keys
| Name | Description |
|---|---|
List[str] | A list of all cache keys. Returns empty list if no keys exist. |
get
| Name | Type | Description |
|---|---|---|
key | str | The cache key to look up. |
| Name | Description |
|---|---|
Optional[str] | The cached value if the key exists, None otherwise. |
set
| Name | Type | Description |
|---|---|---|
key | str | The cache key to store the value under. |
value | str | The value to cache. |
delete
| Name | Type | Description |
|---|---|---|
key | str | The cache key to remove. |