-
Notifications
You must be signed in to change notification settings - Fork 33
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 benchmark with Js-sdsl #49
Comments
Node 20 runtime
Bun runtime
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey! I'm the developer of Js-sdsl.
Official website: https://js-sdsl.github.io/
I made a simple comparison between denque and Deque in Js-sdsl. See https://js-sdsl.github.io/#/test/benchmark-result?id=deque.
I think persistent inserts and random access should be included in benchmarks for deque.
Because the most important performance bottleneck of deque should be the growth time during continuous insertion.
Emptying after inserting a small amount of data in your test cannot fully express the performance of deque. We all now in the single insert, time will be O(1).
I hope to improve your benchmark and compare with Js-sdsl
Looking forward to receiving your reply :D.
The text was updated successfully, but these errors were encountered: