Skip to main content

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.

Store limit

Each moorcheh-edge store supports up to 10,000 vectors.
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

Multiple stores (namespaces)

Each data directory is a separate store with its own 10k cap. Advanced users can mount different Docker volumes for different stores. The default CLI uses one store at ~/.moorcheh-edge/data.

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.