High-performance queue, cache, pub/sub, locks.
ErixStore is the in-memory data structure server engineered specifically for ECODrIx workloads. It handles job queues for ERIX-FLOW, caches API responses, brokers pub/sub events for Socket.IO fan-out, holds distributed locks for tenant-level mutex operations, enforces rate limits, and stores session metadata. Persistence is handled through append-only files (AOF) plus periodic background snapshots (BGSAVE) so failover is transparent. Accessed by application code through the `@ecodrix/erix-client` HTTP/WebSocket SDK.
https://api.ecodrix.com/erix-adminSub-millisecond reads / writes from memory
Append-only file (AOF) durability + BGSAVE snapshots
Distributed queue with priority + delay support
Pub/sub channels for real-time fan-out
Distributed locks and atomic counters
Token-bucket rate limiting
HTTP + WebSocket SDK (`@ecodrix/erix-client`)
Per-tenant namespace isolation
ErixStore is the in-memory data structure server engineered specifically for ECODrIx workloads. It handles job queues for ERIX-FLOW, caches API responses, brokers pub/sub events for Socket.IO fan-out, holds distributed locks for tenant-level mutex operations, enforces rate limits, and stores session metadata. Persistence is handled through append-only files (AOF) plus periodic background snapshots (BGSAVE) so failover is transparent. Accessed by application code through the `@ecodrix/erix-client` HTTP/WebSocket SDK.
ErixStore ships with: Sub-millisecond reads / writes from memory; Append-only file (AOF) durability + BGSAVE snapshots; Distributed queue with priority + delay support; Pub/sub channels for real-time fan-out; Distributed locks and atomic counters; and more. Every feature is exposed through the public ECODrIx API at api.ecodrix.com.
ErixStore is one of 9 modules inside the ECODrIx platform. Data flows seamlessly between modules — leads in ERIX-CRM trigger ERIX-FLOW workflows, ERIX-LAIE feeds enriched leads back into the CRM, and every module emits real-time events over Socket.IO.
Yes. ErixStore exposes its endpoints at https://api.ecodrix.com/erix-admin. Authentication uses tenant API keys (x-api-key + x-client-code) for SaaS-console traffic, or scoped tokens for LAIE and admin surfaces. Full reference is available in the API documentation.