Skip to main content

Crate lora_database

Crate lora_database 

Source
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.
ExecuteOptions
InMemoryGraph

Enums§

LoraValue
QueryResult
ResultFormat

Traits§

QueryRunner
Minimal abstraction any transport can depend on to run Lora queries.

Functions§

parse_query