Platform Thesis
MatrixArk turns context management into a production serving layer.
Production LLM apps need live context management, not another prompt template.
MatrixArk lets vertical AI companies and enterprise AI teams call one context boundary
with raw user questions, lightweight hints, and enterprise policy. MatrixArk handles
planning, extraction, storage routing, freshness, replay, compression, and token-budgeted
context-pack assembly so the model sees less noise and more valid evidence.
The same time-aware layer also 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. MatrixArk's job is to decide what belongs in the
prompt, what should be left out, and what can be reused safely.
TemporalStore is the default serving engine: 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
only for low-volume transactional truth. The Rust version of TemporalStore is planned
to be open sourced in July 2026.
Recent TemporalStore work makes the serving model concrete: context nodes, timestamped
events, declared secondary indexes, dirty-summary markers, and context-pack audits are
bounded records in the request path. MatrixArk keeps the customer API simple while the
engine handles validated time windows, returned-result limits, and replayable context packs.
Time + Speed
Default serving engine for time-aware memory, temporal KV, low-latency fetch, prompt replay, freshness, filter-first traversal, 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 low-volume transactional KV for strong consistency, permissions, approvals, committed actions, and trusted control state.
- Usually not required for context management.
- Use for ownership, leases, approvals, and actions.
- Keep strong consistency separate from serving paths.
Open MatrixKV