Open
Description
The current implementation doesn't seem to do sparse allocation like https://github.com/random-access-storage/random-access-memory.
In short: RandomAccessMemory::buffers
should be of type Vec<Option<Vec<u8>>>
instead of the current type Vec<Vec<u8>>
.
I can see two problems with the current implementation:
-
RandomAccessMemory::write()
allocates all pages beforepage_num
unnecessarily. Seerandom-access-memory/src/lib.rs
Line 86 in 957856c
-
RandomAccessMemory::del()
seems to be broken. When removing a page it shifts all following pages thereby corrupting the stored data. Comparerandom-access-memory/src/lib.rs
Line 183 in 957856c
Metadata
Metadata
Assignees
Labels
No labels