-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershacktoberfestHacktoberfestHacktoberfest
Description
MD5 indexes will work exactly as BTree indexes. They are better suited than BTree indexes for String columns having large and complex data. The are used for exact searches only and cannot perform approximate matches such as a LIKE query. The index will store the MD5 value instead of the raw String value.
Implement on lines of the BTree index https://github.com/blobcity/db/blob/master/engine/src/main/java/com/blobcity/db/indexing/OnDiskBTreeIndex.java
BTree index stores column value to disk. The MD5 index must instead store the MD5 value to disk, but in exactly the same manner as the BTree.
saiprasanna1919jedisct1
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershacktoberfestHacktoberfestHacktoberfest