You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
The text was updated successfully, but these errors were encountered: