Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 371 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 371 Bytes

B-Plus Tree Data Structure in Rust

A fully functional, in-memory B+ Tree data structure implemented in Rust.

TODO:

  • Ensure thread safety
  • Run benchmarks
  • Serialize data to disk

Prerequisites

  • Rust
  • Cargo

To run unit and integration tests:

cargo test

To run all tests (including stress tests):

cargo test --features="stress"