Use Cases
One database, many kinds of applications.
Lux Cloud gives you tables, cache, vectors, jobs, realtime, and time series in one managed system. These are the workloads it fits naturally.
Give your AI agents a brain that remembers
Agent products usually end up split across a cache, a vector database, and custom state sync. Lux keeps semantic memory and structured agent state in one place so recall and state updates live in the same runtime.
Redis
State
Pinecone
Memory
Glue code
Integration
await db.vset("memory:1", embedding, {
metadata: { text: "I prefer dark mode", session: "abc" }
});
const memories = await db.vsearch(contextEmbedding, {
k: 5,
meta: true,
});