From fcfbb0f3598176b57d4134e9c28624294aeafd96 Mon Sep 17 00:00:00 2001 From: Lancer <402430575@qq.com> Date: Sat, 1 Mar 2025 08:13:33 +0800 Subject: [PATCH] fix:[Doc]:fix format of Design Notes (#23) Co-authored-by: maruixiang --- docs/design_notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_notes.md b/docs/design_notes.md index d520ab0..1b8a3c0 100644 --- a/docs/design_notes.md +++ b/docs/design_notes.md @@ -277,7 +277,7 @@ File chunks are stored in the chunk engine. On each SSD, the persistent storage 1. *open/close* Initializes the engine by loading metadata from RocksDB and reconstructing chunk allocator states. -2. get: Retrieves chunk metadata and reference-counted handle through a hashmap cache, enabling concurrent access with O(1) average complexity. +2. *get* Retrieves chunk metadata and reference-counted handle through a hashmap cache, enabling concurrent access with O(1) average complexity. 3. *update* Implements copy-on-write (COW) semantics by allocating new chunks before modifying data. Old chunks remain readable until all handles are released.