pull/35/head
Tpt 5 years ago
parent dc08e181a8
commit 4e3f72769f
  1. 1
      lib/Cargo.toml
  2. 4
      lib/benches/store.rs
  3. 2
      lib/src/lib.rs

@ -47,6 +47,7 @@ wasm-bindgen-test = "0.3"
[[bench]]
name = "store"
harness = false
required-features = ["seld", "rocksdb"]
[[bench]]
name = "sparql_query"

@ -1,6 +1,6 @@
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion, Throughput};
use oxigraph::model::*;
use oxigraph::*;
use oxigraph::model::{NamedNode, Quad};
use oxigraph::{MemoryStore, RocksDbStore, SledStore};
use rand::random;
use std::env::temp_dir;
use std::fs::remove_dir_all;

@ -7,7 +7,7 @@
//! * `RocksDbStore`: a file system implementation based on the [RocksDB](https://rocksdb.org/) key-value store.
//! It requires the `"rocksdb"` feature to be activated.
//! It also requires the clang](https://clang.llvm.org/) compiler to be installed.
//! * `Sled`: an other file system implementation based on the [Sled](https://sled.rs/) key-value store.
//! * `SledStore`: an other file system implementation based on the [Sled](https://sled.rs/) key-value store.
//! It requires the `"sled"` feature to be activated.
//! Sled is much faster to build than RockDB and does not require a C++ compiler.
//! However Sled is still in heavy developpment, less tested and data load seems much slower than RocksDB.

Loading…
Cancel
Save