stringInterner provides efficient string deduplication for categorical data
| 12 | |
| 13 | // stringInterner provides efficient string deduplication for categorical data |
| 14 | type stringInterner struct { |
| 15 | pool sync.Map // map[string]string for concurrent access |
| 16 | } |
| 17 | |
| 18 | // newStringInterner creates a new string interner |
| 19 | func newStringInterner() *stringInterner { |
nothing calls this directly
no outgoing calls
no test coverage detected