raindb 1.0.0

A persistent key-value store based on an LSM tree implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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 cache;

pub(crate) mod bytes;
pub(crate) mod comparator;
pub(crate) mod crc;
pub(crate) mod io;
pub(crate) mod linked_list;