-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
create bplus db skeleton and reserve db module #35
Conversation
757fe94
to
969cf39
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good stuff!
src/database/bplus/mod.rs
Outdated
//! This module provides a database implementation backed by a | ||
//! persistent bplus tree. | ||
//! | ||
//! #### Authorship |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feel free to leave it in if you want, but I kinda removed all of the authorship tags from all files (already in dev
).
I first did it because I saw it in Classic, and I figured I should do it too. But there is git blame
nowadays, so there is really no need. Still, feel free to leave it in if you want to, it's nice in its own right to be people-first in that regard.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i dont really care for it either, i was just modelling after other files in src/database/~
. also its not about individual contributions, but about project progress 😸
969cf39
to
02861dd
Compare
created skeleton for bplus backed database implementation (NOT the bplus tree implementation) and added to list of db modules