AbstractCacheName | Description |
---|---|
*args | |
**kwargs |
Name | Description |
---|---|
key | The key identifying the item in the cache. Type: str |
default | The default value to return if the key is not found. Defaults to None. Type: Any | None Default: None |
Type | Description |
---|---|
Any | None | The value associated with the key if found, else the default value. |
Name | Description |
---|---|
key | The key under which the item is to be stored. Type: str |
value | The value to be stored in the cache. Type: Any |