Optimize JsonParser.getDoubleValue()/getFloatValue()/getDecimalValue()
to avoid String allocation
#1284
Labels
2.18
Issues planned at earliest for 2.18
performance
Issue related to performance problems or enhancements
Milestone
With #1230 done, we can tackle one problem that may have been a regression: the fact that even when following
JsonParser
methods are used:getDecimalValue()
getDoubleValue()
getFloatValue()
there will still be a String allocation even if that is not really needed for deferred decoding (like
JsonParser.getNumberValueDeferred()
)This may be a regression to address other problems with too-early binding of type.
The text was updated successfully, but these errors were encountered: