pagecache 0.17.0

lock-free pagecache and log for high-performance databases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::*;

mod dll;
mod lru;
mod pagetable;
mod stack;
mod vecset;

pub use self::dll::Dll;
pub use self::lru::Lru;
pub use self::pagetable::PageTable;
pub use self::stack::{node_from_frag_vec, Node, Stack, StackIter};
pub use self::vecset::VecSet;