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
Currently ObjectNode serialization uses "simple" writeStartObject(Object forValue).
It would be more efficient for some backends to use variant that takes number of elements to write as argument (f.ex CBOR has length-prefixed variant that may be more efficient to decode).
Although not all cases can use this variant (if filtering, f.ex), but some can: let's use it where we can.