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

# Limits

> Store size, vector dimensions, and free vs paid Moorcheh.

## Store limit

Moorcheh Edge uses a **single store** with up to **10,000 vectors**. All vectors are persisted in one JSON file on disk:

```
~/.moorcheh-edge/data/
  moorcheh_edge_store.json
```

| Field              | Value   |
| ------------------ | ------- |
| `max_items`        | `10000` |
| `vector_dimension` | `1024`  |

Check quota anytime:

```bash theme={null}
moorcheh-edge status
```

```json theme={null}
{
  "status": "ok",
  "vector_dimension": 1024,
  "items": 42,
  "max_items": 10000,
  "remaining": 9958
}
```

When an upload would exceed the cap, the server returns **HTTP 409**.

<h2 id="vector-requirements">
  Vector requirements
</h2>

* Upload and search vectors must be exactly **1024 floats**
* All values must be finite (no `NaN` or `Infinity`)
* Plain text queries are **not** supported

## Free vs paid Moorcheh

**Moorcheh Edge (free)** is for:

* Development and experimentation
* Small on-device deployments
* Offline vector search

**Paid Moorcheh** is for production scale:

* Unified indexes above 10k
* Cloud or enterprise self-hosted options
* Platform features beyond a single local store

See [Introduction](/introduction) for the full product overview.
