simple-db-rust 0.1.5

A simple database writing in rust, inspired from mit 6.830
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
A brand new folder to store (and only store) the
code related to b-tree. All data structures and
codes should be properly commented, not just moved
from the java version.
*/

pub mod buffer_pool;
pub mod catalog;
pub mod consts;
pub mod entry;
pub mod file;
pub mod page;
pub mod page_id;
pub mod tuple;