Expand description
In-memory Lora database — the database-facing orchestration layer.
lora-database owns the parse → analyze → compile → execute pipeline
and exposes a single Database entry point that transports (HTTP,
benches, examples, embedded callers) can drive without knowing about the
underlying crates.
§Quick start
use lora_database::Database;
let db = Database::in_memory();
db.execute("CREATE (:User {name: 'alice'})", None).unwrap();Structs§
- Database
- Owns the graph store and orchestrates parse → analyze → compile → execute.
- Execute
Options - InMemory
Graph
Enums§
Traits§
- Query
Runner - Minimal abstraction any transport can depend on to run Lora queries.