indradb-lib 0.15.0

A graph database library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The rocksdb datastore implementation.

mod keys;
mod instance;
mod managers;
mod datastore;

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

#[cfg(feature = "bench-suite")]
full_bench_impl!(instance::datastore());

#[cfg(feature = "test-suite")]
full_test_impl!(instance::datastore());