quill-sql 0.2.0

A tiny yet serious SQL database in Rust with ARIES-style WAL, 2PL, and B+Tree indexes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod codec;
pub mod disk_manager;
pub mod disk_scheduler;
pub mod engine;
pub mod heap;
pub mod heap_recovery;
pub mod index;
pub mod io;
pub mod page;
pub mod table_heap;
pub mod tuple;
pub use engine::{DefaultStorageEngine, StorageEngine};