fix:[Doc]:fix format of Design Notes (#23)

Co-authored-by: maruixiang <maruixiang@cmss.chinamobile.com>
This commit is contained in:
Lancer 2025-03-01 08:13:33 +08:00 committed by GitHub
parent caf7a093d5
commit fcfbb0f359
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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