view src/lib.rs @ 90:ab7984e1e49c

Update memtable to exhibit correct snapshot/sequencing behavior That is: Given an entry X with sequence numbers 1 and 4, looking it up with a sequence number of 3 should yield the value of X at 1, and looking it up at 0 should give a "not found".
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 02 Sep 2016 22:12:28 +0200
parents edf1f72cd0ca
children db84cb244062
line wrap: on
line source

#![allow(dead_code)]

extern crate crc;
extern crate integer_encoding;
extern crate libc;
extern crate rand;

mod block;
mod blockhandle;
mod block_cache;
mod disk_env;
mod env;
mod filter;
mod filter_block;
mod log;
mod memtable;
mod merging_iter;
mod options;
mod skipmap;
mod snapshot;
mod table_builder;
mod table_reader;
mod types;
mod write_batch;

mod test_util;

pub use types::Comparator;

#[cfg(test)]
mod tests {}