raindb 1.0.0

A persistent key-value store based on an LSM tree implemented in Rust
Documentation
// Copyright (c) 2021 Google LLC
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.

pub mod block;
pub mod errors;

mod block_handle;
mod constants;
mod filter_block;
mod footer;

pub(crate) mod table;
pub use table::BlockCacheKey;
pub(crate) use table::Table;

pub(crate) mod table_builder;
pub(crate) use table_builder::TableBuilder;

mod block_builder;
use block_builder::BlockBuilder;

mod filter_block_builder;
use filter_block_builder::FilterBlockBuilder;