Reverts interning of all tag sizes due to significant gains in memory usage from large duplicated tags, like r tags with urls

This commit is contained in:
Vitor Pamplona
2025-12-11 18:26:27 -05:00
parent 9bd07468c2
commit 25e9313d17
@@ -30,9 +30,7 @@ class TagArrayManualDeserializer {
if (s.isNull) {
""
} else {
val text = s.asText()
if (text.length < 100) text.intern()
text
s.asText().intern()
}
}
}