Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ While building this database, I wrote easy to understand articles explaining how
- [Build a Database Pt. 1: Motivation & Design](https://adambcomer.com/blog/simple-database/motivation-design/)
- [Build a Database Pt. 2: MemTable](https://adambcomer.com/blog/simple-database/memtable/)
- [Build a Database Pt. 3: Write Ahead Log(WAL)](https://adambcomer.com/blog/simple-database/wal/)
- Build a Database Pt. 4: SSTable
- [Build a Database Pt. 4: SSTable](https://adambcomer.com/blog/simple-database/sstable/)
- Build a Database Pt. 5: Compaction
- Build a Database Pt. 6: Putting it Together
- Build a Database Pt. 7: Using the Database
Expand Down
5 changes: 1 addition & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
pub mod database;
mod mem_table;
mod sstable;
mod utils;
mod wal;
mod wal_iterator;

// mod table;
// mod table_manager;
// mod utils;
Loading
Loading