Skip to content

Commit

Permalink
add toc for week 3
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Chi <iskyzh@gmail.com>
  • Loading branch information
skyzh committed Jan 26, 2024
1 parent 6025bb8 commit 6fb6df9
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ We are working on chapter 3 and more test cases for all existing contents.
| 2.7 | Batch Write + Checksum ||| |
| 3.1 | Timestamp Key Encoding || 🚧 | |
| 3.2 | Snapshot Read - Blocks, Memtables, and SSTs || 🚧 | |
| 3.3 | Snapshot Read - Engine Read Path | 🚧 | 🚧 | |
| 3.4 | Watermark and Garbage Collection | 🚧 | 🚧 | |
| 3.5 | Transactions and Optimistic Concurrency Control | | | |
| 3.6 | Serializable Snapshot Isolation | | | |
| 3.7 | TTL (Time-to-Live) Entries | | | |
| 3.3 | Snapshot Read - Engine Read Path | | 🚧 | |
| 3.4 | Watermark and Garbage Collection | | 🚧 | |
| 3.5 | Transactions and Optimistic Concurrency Control | 🚧 | | |
| 3.6 | Serializable Snapshot Isolation | 🚧 | | |
| 3.7 | Compaction Filter | 🚧 | | |

## License

Expand Down
9 changes: 8 additions & 1 deletion mini-lsm-book/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- [Write Path](./week1-06-write-path.md)
- [Snack Time: SST Optimizations](./week1-07-sst-optimizations.md)

- [Week 2 Overview: Compaction and Persistence](./week2-overview.md)
- [Week 2 Overview: Compaction + Persistence](./week2-overview.md)
- [Compaction Implementation](./week2-01-compaction.md)
- [Simple Compaction Strategy](./week2-02-simple.md)
- [Tiered Compaction Strategy](./week2-03-tiered.md)
Expand All @@ -23,6 +23,13 @@
- [Snack Time: Batch Write and Checksums (WIP)](./week2-07-snacks.md)

- [Week 3 Overview: MVCC (WIP)](./week3-overview.md)
- [Timestamp Encoding + Refactor](./week3-01-ts-key-refactor.md)
- [Snapshots - Memtables and SSTs](./week3-02-snapshot-read-part-1.md)
- [Snapshots - Engine Read Path](./week3-03-snapshot-read-part-2.md)
- [Watermark and GC](./week3-04-watermark.md)
- [Transaction and OCC](./week3-05-txn-occ.md)
- [Serializable Snapshot Isolation](./week3-06-serializable.md)
- [Snack Time: Compaction Filter](./week3-07-compaction-filter.md)
- [The Rest of Your Life (TBD)](./week4-overview.md)

---
Expand Down
1 change: 1 addition & 0 deletions mini-lsm-book/src/week3-01-ts-key-refactor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Timestamp Key Encoding + Refactor
1 change: 1 addition & 0 deletions mini-lsm-book/src/week3-02-snapshot-read-part-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Snapshot Read - Memtables and SSTs
1 change: 1 addition & 0 deletions mini-lsm-book/src/week3-03-snapshot-read-part-2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Snapshot Read - Engine Read Path
1 change: 1 addition & 0 deletions mini-lsm-book/src/week3-04-watermark.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Watermark and Garbage Collection
1 change: 1 addition & 0 deletions mini-lsm-book/src/week3-05-txn-occ.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Transaction and Optimistic Concurrency Control
1 change: 1 addition & 0 deletions mini-lsm-book/src/week3-06-serializable.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Serializable Snapshot Isolation
1 change: 1 addition & 0 deletions mini-lsm-book/src/week3-07-compaction-filter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Snack Time: Compaction Filter

0 comments on commit 6fb6df9

Please sign in to comment.