Skip to main content

candor_memory/
lib.rs

1// candor-memory: unified storage with SurrealDB + vector search.
2//
3// From the design doc: "SurrealDB serves as the core database engine.
4// Written natively in Rust, SurrealDB acts as a unified data store
5// capable of relational queries, graph connections, and native vector
6// similarity search."
7//
8// Uses kv-mem backend for embedded, zero-dependency operation in
9// development. Migrates to RocksDB for production persistence.
10
11pub mod store;
12pub mod schema;
13
14pub use store::MemorySystem;