meshdb-storage 0.2.0

RocksDB-backed storage engine for Mesh
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod engine;
mod error;
mod keys;
mod rocksdb_engine;

pub use engine::{
    ConstraintScope, EdgePointIndexSpec, EdgePropertyIndexSpec, GraphMutation, PointIndexSpec,
    PropertyConstraintKind, PropertyConstraintSpec, PropertyIndexSpec, PropertyType, StorageEngine,
};
pub use error::{Error, Result};
pub use rocksdb_engine::{RocksDbStorageEngine, StorageOptions};