We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
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 |
The text was updated successfully, but these errors were encountered:
echo JSON objects must be separated by certain means.
Sorry, something went wrong.
No problem. I made a mistake.
No branches or pull requests
document:
The manifest format is like:
Again, note that we do not record the information of how many bytes each record has.
but
mini-lsm/manifest.rs
:so,The real format is:
The text was updated successfully, but these errors were encountered: