You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One small but useful optimization that jackson-jr does is to use direct calls to a small set of "well-known" container types; ArrayList, LinkedHashMap and perhaps HashMap, instead of going through reflection. It seems simple enough to do this here as well, perhaps by just implementing alternate AnnotatedWithParams to use via StdValueInstantiator.
The text was updated successfully, but these errors were encountered:
cowtowncoder
changed the title
Optimize std construction of ArrayList, LinkedHashMap
Optimize construction of ArrayList, LinkedHashMap instances
Jul 12, 2016
One small but useful optimization that
jackson-jr
does is to use direct calls to a small set of "well-known" container types;ArrayList
,LinkedHashMap
and perhapsHashMap
, instead of going through reflection. It seems simple enough to do this here as well, perhaps by just implementing alternateAnnotatedWithParams
to use viaStdValueInstantiator
.The text was updated successfully, but these errors were encountered: