class InMemoryKeyValueStorage(BaseKeyValueStorage):
BaseKeyValueStorage
using
in-memory list. Ideal for temporary storage purposes, as data will be lost
when the program ends.
def __init__(self):
def save(self, records: List[Dict[str, Any]]):
def load(self):
def clear(self):