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
a = 1, b = 11, c = 111
a = 2, b = 22, c = 222
a = 2, b = 22, c = 222
It looks like all the JsonValue share the same buffer if they are parsed by same parser.
What can I do to save the independent JsonValue for different buffer(JSON string)?
Plus, I don't think new SimdJsonParser for each JSON string is a good idea, cuz it costs performance and memory.
I'm running code below:
And the output is
It looks like all the JsonValue share the same buffer if they are parsed by same parser.
What can I do to save the independent JsonValue for different buffer(JSON string)?
Plus, I don't think new SimdJsonParser for each JSON string is a good idea, cuz it costs performance and memory.