Platform Thesis
MatrixArk makes context a serving layer, not prompt glue.
Production LLM apps need a reliable context layer between users, tools, memory,
retrieval, runtime cache, and the model. MatrixArk gives vertical AI companies and
enterprise AI teams one context boundary for raw questions, workflow signals, and policy.
It plans, extracts, routes, refreshes, compresses, and assembles token-budgeted context
packs so the model sees less noise and more valid evidence.
The same time-aware layer gives the model runtime better inputs. Context extraction
turns raw events into serving state, TemporalStore keeps recent sequences and aggregates
fresh, and cache-policy signals help LMCache-style systems reuse stable prefixes without
reusing stale or unauthorized context.
TemporalStore is the default serving engine for most context needs: time-aware memory,
temporal KV, latest KV, low-latency serving, replay, freshness, cache, and persistence.
MatrixDB and MatrixKV are complements: add MatrixDB for Redis-compatible hot state at
scale, and add MatrixKV for transactional truth, SQL-style access, and scan-heavy
operational state when needed. The Rust version of TemporalStore is planned to be open
sourced in July 2026.
Under the hood, context nodes, timestamped events, declared indexes, dirty-summary
markers, and context-pack audits become bounded records in the request path. Customers
get a simple API while the engine enforces time windows, limits, and replay.
Time + Speed
Default serving engine for time-aware memory, temporal KV, latest KV, low-latency fetch, prompt replay, freshness, and long sequences. Planned Rust open source in July 2026.
- Cover most LLM context management use cases directly.
- Use multi-layer cache plus persistent storage.
- Serve fresh context and latest values in one path.
Open TemporalStore
Serverless DB
Complementary Redis-compatible, multi-tenant KV database for hot sessions, profile KV, LMCache metadata, scans, exports, and database-style operations.
- Support Redis migration and familiar APIs.
- Scale to tens of millions of QPS with tenant isolation.
- Serve large profile, summary, cache, scan, and export workloads.
Open MatrixDB
Truth + transactional
Complementary transactional KV for strong consistency, permissions, approvals, committed actions, SQL-style queries, scans, and trusted control state.
- Usually not required for context management.
- Use for ownership, leases, approvals, SQL-style access, scans, and actions.
- Keep strong consistency separate from serving paths.
Open MatrixKV