-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid creating a new page on every insert
Currently, `insert_storage` in the access method creates a new Tape to add the vector to, on every insert. This can cause a lot of empty space in pages. This commit allows tapes to be restarted at the most recent block (of the right tape), instead of always starting at a new block. This allows `insert_storage` to continue writing into an existing page instead of creating a new one.
- Loading branch information
Showing
2 changed files
with
113 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters