Distributed in memory multi-model (vector, relational, graph, temporal) database management system that uses Datalog for query. https://fluidb.ru
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ziyang Hu 55be00f413 fix build script 2 years ago
.idea make IDE cooperate 2 years ago
cozorocks fix build script 2 years ago
rocksdb@8e0f495253 triple branche 2 years ago
src attribute and json 2 years ago
.gitignore nested loop join 2 years ago
.gitmodules move around 2 years ago
Cargo.toml fix build script 2 years ago
PLAN.md triple branche 2 years ago
README.md cleanup 2 years ago
TODO.md fix unary parsing 2 years ago
build_rocksdb.sh move around 2 years ago

README.md

Build

First build static lib for RocksDB

cd rocksdb
USE_RTTI=1 DEBUG_LEVEL=0 make static_lib

Edge key layout

  • Forward [true, *src_keys, *tgt_keys, *own_keys]
  • Backward [false, *src_keys, *tgt_keys, *own_keys]

Isolation levels

  • Read uncommitted: write to the raw DB
  • Read committed: use transaction
  • Repeatable read: use snapshot
  • Serializable: do all reads with GetForUpdate