indradb-lib 0.12.1

A graph database library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The rocksdb datastore implementation.
//!
//! This should be substantially faster than the postgres implementation -
//! especially on SSDs - however it comes at a cost:
//!
//! * Transactions cannot be rolled back on error.
//! * Only a single server process can run on the same datastore at the same
//!   time.

mod keys;
mod managers;
mod datastore;
mod tests;

pub use self::datastore::{RocksdbDatastore, RocksdbTransaction};