> ## Documentation Index
> Fetch the complete documentation index at: https://docs.camel-ai.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Camel.storages.key value storages.base

<a id="camel.storages.key_value_storages.base" />

<a id="camel.storages.key_value_storages.base.BaseKeyValueStorage" />

## BaseKeyValueStorage

```python theme={"system"}
class BaseKeyValueStorage(ABC):
```

An abstract base class for key-value storage systems. Provides a
consistent interface for saving, loading, and clearing data records without
any loss of information.

An abstract base class designed to serve as a foundation for various
key-value storage systems. The class primarily interacts through Python
dictionaries.

This class is meant to be inherited by multiple types of key-value storage
implementations, including, but not limited to, JSON file storage, NoSQL
databases like MongoDB and Redis, as well as in-memory Python dictionaries.

<a id="camel.storages.key_value_storages.base.BaseKeyValueStorage.save" />

### save

```python theme={"system"}
def save(self, records: List[Dict[str, Any]]):
```

Saves a batch of records to the key-value storage system.

**Parameters:**

* **records** (List\[Dict\[str, Any]]): A list of dictionaries, where each dictionary represents a unique record to be stored.

<a id="camel.storages.key_value_storages.base.BaseKeyValueStorage.load" />

### load

```python theme={"system"}
def load(self):
```

**Returns:**

List\[Dict\[str, Any]]: A list of dictionaries, where each dictionary
represents a stored record.

<a id="camel.storages.key_value_storages.base.BaseKeyValueStorage.clear" />

### clear

```python theme={"system"}
def clear(self):
```

Removes all records from the key-value storage system.
