Skip to main content

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
FieldValue
max_items10000
vector_dimension1024
Check quota anytime:
moorcheh-edge status
{
  "status": "ok",
  "vector_dimension": 1024,
  "items": 42,
  "max_items": 10000,
  "remaining": 9958
}
When an upload would exceed the cap, the server returns HTTP 409.

Vector requirements

  • 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 for the full product overview.