ogma
ogma copied to clipboard
[TASK] Explore `Str` interning
Goal
R&D interning of Str
s for equality performance improvement.
The pattern of referencing column headers lends itself to an interner for equality. This might improve performance when working with strings, but should be validated.
- Interned strings could be stored sorted, this makes string comparison faster
- Interned map only needs to last for evaluation phase
- Consider whether
Str
is altered, or leverage the properties ofArc
for equality