<- Back to NucleoCore

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)

Revision #4
Created 23 December 2023 19:04:43 by Nathaniel
Updated 23 December 2023 20:30:31 by Nathaniel