Indexing
Currently there are 2 index types, Tree and Trie.
Trie Index
Supported value types: String
Heavy memory usage and allows for partial text search.
@Index(type = TrieIndex.class)
Tree Index (Default)
Support value types: Numbers, String, Dates
Lower memory usage and allows for lookup by object.
@Index(type = TreeIndex.class)