Skip to content

Commit

Permalink
fix: fix typo in w1d6 (#75)
Browse files Browse the repository at this point in the history
Co-authored-by: shenjiaqi.2769 <shenjiaqi.2769@bytedance.com>
  • Loading branch information
Gleiphir2769 and shenjiaqi.2769 committed May 13, 2024
1 parent 2665e03 commit c4d5440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mini-lsm-book/src/week1-06-write-path.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ src/lsm_storage.rs
src/mem_table.rs
```

You will need to modify `LSMStorageInner::force_flush_next_imm_memtable` and `MemTable::flush`. In `LSMStorageInner::open`, you will need to create the LSM database directory if it does not exist. To flush a memtable to the disk, we will need to do two things:
You will need to modify `LSMStorageInner::force_flush_next_imm_memtable` and `MemTable::flush`. In `LSMStorageInner::open`, you will need to create the LSM database directory if it does not exist. To flush a memtable to the disk, we will need to do three things:

* Select a memtable to flush.
* Create an SST file corresponding to a memtable.
Expand Down

0 comments on commit c4d5440

Please sign in to comment.