fn prune_size<'a>(
indexes: impl Iterator<Item = &'a PageKey>,
file_size: u64,
page_size: u64,
) -> u64
Expand description
Prunes the size of the last page based on the indexes. We have following cases:
- The rest file size is less than the page size, read to the end of the file.
- Otherwise, read the page size.