BaseKeyValueStorage
save
- records (List[Dict[str, Any]]): A list of dictionaries, where each dictionary represents a unique record to be stored.
class BaseKeyValueStorage(ABC):
def save(self, records: List[Dict[str, Any]]):
def load(self):
def clear(self):