-
Notifications
You must be signed in to change notification settings - Fork 135
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
Add the WAST library for testing #102
Conversation
Yes, on the condition that performance is higher than a few of the lowest performers in the benchmark. Please run ser+deser benchmarks for jackson,wast,gson. |
WAST | ||
; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move semi-colon to the same line as WAST.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, it has been adjusted
The performance should be faster than most libraries, including the top few libraries, which I only tested on the window platform |
I’m sure it’ll be fine.
Please post the results of the benchmark here.
Fabien
…On Wed, Apr 17, 2024 at 03:23 wycst ***@***.***> wrote:
Yes, on the condition that performance is higher than a few of the lowest
performers in the benchmark. Please run ser+deser benchmarks for
jackson,wast,gson.
The performance should be faster than most libraries, including the top
few libraries, which I only tested on the window platform
—
Reply to this email directly, view it on GitHub
<#102 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAXX2KPSU3SUHOLPXO2JDNDY5ZERTAVCNFSM6AAAAABFXGLYICVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANRQHEZDSMJRGM>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Hello, compared to the results of the first two high-performance library tests, the results of the just tested run fastjson2: 2.0.47
The original test data can be found in README_2024_04_17_JSON_JMH_RAW.md |
Impressive! I wonder how you got serialization running 50% faster than fastjson. That's huge! |
Please also update the README with the new lib name and version. |
I just updated the new library and version, and I found that the versions of other libraries are not the latest, such as dsl json and fastjson2 |
It's not that exaggerated, serialization is similar, but deserialization is faster than fastjson2, without using any black technology, only using unsafe and cached reflection. Most of the performance comes from the performance advantages of higher versions of JDK for reading and writing Strings, such as some APIs that add @ IntrinsicCandidate annotations, which cannot be surpassed by any coding techniques. |
Thank you for your contribution! |
Hello, this open-source performance testing project is fantastic. Can we add 'wast'( https://github.com/wycst/wast )Participate in performance testing, thank you very much!