| Crates.io | gqlite |
| lib.rs | gqlite |
| version | 0.1.0 |
| created_at | 2021-09-26 11:17:10.349461+00 |
| updated_at | 2021-09-26 11:17:10.349461+00 |
| description | An embedded property graph database. |
| homepage | |
| repository | https://github.com/dyedgreen/gqlite |
| max_upload_size | |
| id | 456522 |
| size | 233,743 |
An embedded graph database implemented in Rust. This is currently a pre-release. It has not been extensively tested with 'real-world work-loads', and the file-format and API are not yet stabilized.
The longer term goal is to create an in-process graph database with a stable on-disk format and support for a wide range of programming languages.
use gqlite::Graph;
let graph = Graph::open_anon()?;
let mut txn = graph.mut_txn()?;
let edge: u64 = graph.prepare(
"
CREATE (a:PERSON { name: 'Peter Parker' })
CREATE (b:PERSON { name: 'Clark Kent' })
CREATE (a) -[e:KNOWS]-> (b)
RETURN ID(e)
"
)?
.query_map(&mut txn, (), |m| m.get(0))?
.next()
.unwrap()?;
txn.commit()?;
let name: String = graph.prepare(
"
MATCH (p:PERSON) <-[e:KNOWS]- (:PERSON)
WHERE ID(e) = $edge
RETURN p.name
"
)?
.query_map(&mut graph.txn()?, ("edge", edge), |m| m.get(0))?
.next()
.unwrap()?;
assert_eq!("Clark Kent", name);
src/parserPEG grammar and parser for a subset of the CYPHER graph query language
src/plannerTransforms a parsed query ast into a logical query plan. Performs some optimizations on the query plan.
src/runtimeDefines a simple 'byte' code (Instructions) and can execute those against a given
database, as well as generate instructions for a given query plan.
src/storeUses a disc-backed btree to provide basic storage, iteration and lockup for nodes and
edges.