7 releases
0.7.13-alpha.3 | Dec 8, 2024 |
---|---|
0.7.13-alpha.1 | Dec 7, 2024 |
#2705 in Database interfaces
803 downloads per month
Used in cozo-ce-bin
2MB
61K
SLoC
Cozo-core
This crate contains the implementation proper of CozoDB.
lib.rs
:
This crate provides the core functionalities of CozoDB. It may be used to embed CozoDB in your application.
This doc describes the Rust API. To learn how to use CozoDB to query (CozoScript), see:
Rust API usage:
use cozo_ce::*;
let db = DbInstance::new("mem", "", Default::default()).unwrap();
let script = "?[a] := a in [1, 2, 3]";
let result = db.run_script(script, Default::default(), ScriptMutability::Immutable).unwrap();
println!("{:?}", result);
We created an in-memory database above. There are other persistent options: see DbInstance::new. It is perfectly fine to run multiple storage engines in the same process.
Dependencies
~32–56MB
~793K SLoC