issues
search
shuoli84
/
sweep-bptree
A b+ tree, locality aware, so it's faster for ordered access
Apache License 2.0
12
stars
4
forks
source link
implement common traits
#34
Open
YeungOnion
opened
2 months ago
YeungOnion
commented
2 months ago
feat: impl
Hash
for BPlusTree
feat: derive Debug
feat: impl Default for BPlusTree using vec backed node store
feat: impl PartialEq for BPlusTree
YeungOnion
commented
2 months ago
questions I have for now are,
what do you think of Hash and PartialEq?
should I drop the intent to implement
Display
since
std::collections
BTree doesn't?
decided against this
what should I write tests for? Perhaps testing that
Hash
is different for tuples that don't have prefix collisions?
Hash
for BPlusTree