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
In my case, the speed of parser.parse() is about 4x faster than orjson.loads(), great!
However, both JSONObject.get() and [] method to access inner attribute is 2x slower than python dict.get() and [] mthod.
Is there any good ideas to load json use this module, and use python dict to access value? ps., export() method is too heavily.
Or is there any other more efficient method to access the value?
Thanks
The text was updated successfully, but these errors were encountered:
In my case, the speed of parser.parse() is about 4x faster than orjson.loads(), great!
However, both JSONObject.get() and [] method to access inner attribute is 2x slower than python dict.get() and [] mthod.
Is there any good ideas to load json use this module, and use python dict to access value? ps., export() method is too heavily.
Or is there any other more efficient method to access the value?
Thanks
The text was updated successfully, but these errors were encountered: