huynguyen-and-friend-projects / smoldb

Simple database in C(++)
1 stars 3 forks source link

B-tree #31

Open nguyenhuy0905 opened 3 months ago

nguyenhuy0905 commented 3 months ago

What is the feature you would want? A B-tree, for data-storage

Why would you want this feature? It's pretty much the database.

How should we implement it? First, let's do an on-memory one, then we can decide how we may save a B-tree on disk.

Request by: Huy Nguyen

nguyenhuy0905 commented 2 months ago

Goodness, this is NOT yet done, our B-tree is currently just an on-memory one, which gets wiped out the moment the program finishes/terminates. We need a different BTree.