-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missleading benchmarks #26
Comments
Thanks for your reminder. I'll convert the |
@SunDoge I think both should be included in the benchmarks. Converting might not be needed for all the applications. |
Ja both is definetly the best, and if not all libraries support all target formats isn't a big issue |
FWIW simd-json has now DOM like read-only access to the tape so it would be possible to include the DOM versions in the benchmark as well |
Hi,
I wanted to suggest changing the benchmark output slightly, as they are presented, it is somewhat misleading.
The way
serde_json
andsimd-json
treat theDom
is very different from howsimdjson
treats theDom
. Both are valid tradeoffs to make, but comparing them is not very meaningful.Both
serde_json
andsimd-json
when presenting aDom
create a nested data structure that is modifiable and has indexed maps - a data structure on its own. That comes at the cost of allocations and filling data structures, but it's a valid tradeoff when either map are accessed frequently, or the date needs to be modified.simdjson
presents a pointer to thetape
as aDom
, which means it does not perform extra allocations but does not allow mutations, and lookups are always in linear time.Again, both are valid tradeoffs for different use cases. However, comparing them is problematic as what we compare isn't the same result.
I think the best way would be to create a third category aside of
Dom
,Struct
calledTape
, which is the fully validated JSON but not put in a nested data structure.serde_json
does not provide an interface like that,simd-json
does provideto_tape
which provides an equivalent data structure tosimdjson
but without the nicer access functions (so that should be easy to implement oneself or add).The text was updated successfully, but these errors were encountered: