I am looking for a data structure for row indexes (UTF-8) that is optimized for range queries and space usage. Thank!
Development: I have a list of utf-8 strings of arbitrary length that I need to index. I will only use range queries.
Example: I have lines - apple, monkey, black, cool, dark.
The query will look something like this: "get 2 to 3 elements in desc order" or "get lines starting with" ap "
source
share