fix: fix typo in w1d6 (#75)

Co-authored-by: shenjiaqi.2769 <shenjiaqi.2769@bytedance.com>
This commit is contained in:
Jiaqi Shen
2024-05-13 10:43:56 +08:00
committed by GitHub
parent 2665e0343d
commit c4d5440264

View File

@@ -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.