1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:47:37 +00:00

LibSQL: Hash index implementation for the SQL storage layer

This patch implements a basic hash index. It uses the extendible hashing
algorith. Also includes a test file.
This commit is contained in:
Jan de Visser 2021-06-17 14:07:29 -04:00 committed by Andreas Kling
parent 224804b424
commit 267eb3b329
5 changed files with 945 additions and 0 deletions

View file

@ -1,6 +1,7 @@
set(SOURCES
BTree.cpp
BTreeIterator.cpp
HashIndex.cpp
Heap.cpp
Index.cpp
Key.cpp