Open
Description
document:
The manifest format is like:
| JSON record | JSON record | JSON record | JSON record |
Again, note that we do not record the information of how many bytes each record has.
but mini-lsm/manifest.rs
:
// record how many bytes each record has
file.write_all(&(buf.len() as u64).to_be_bytes())?;
so,The real format is:
| len,JSON record,crc | len,JSON record,crc | len,JSON record,crc | len,JSON record,crc |
Metadata
Assignees
Labels
No labels