Open thompsonbry opened 2 days ago
Looking at the README, it seems that this is just a matter of changing a typedef and specializing a method? That is, that the data structures are not inherently limited to uint64_t keys.
To add new key types, instantiate art_key type with the desired type, and specialize art_key::make_binary_comparable according to the ART paper.
Looking at the README, it seems that this is just a matter of changing a typedef and specializing a method? That is, that the data structures are not inherently limited to uint64_t keys.
To add new key types, instantiate art_key type with the desired type, and specialize art_key::make_binary_comparable according to the ART paper.
Correct
Have you looked at adding support for variable length keys to this implementation?