-
Notifications
You must be signed in to change notification settings - Fork 423
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
minor optimization #59
Comments
Ah. On the question 2 about slow deletes, I figured out this was due to my tuning, not anything intrinsic to this library. Details if anyone is concerned: (code is available here: https://github.com/glycerine/uart/tree/bench_goog_btree ) I had tuned the btree for load and read performance, not realizing the impact this would have on delete performance, for which I added measurements much later. The fastest load and read I observed was with a large degree, degree 3000 specifically. When comparing degree 3000 to degree 32, the benchmark code linked above shows: The degree 3000 is 30% faster to load, 60% faster on sequential read, BUT 6x slower on delete, compared to a degree 32 btree. So it is simply a matter of balancing for your use case. If you do no deletes, and want the fastest full table scans, use a very large degree (say 3000 degree) btree. If you do frequent deletes, then use a more modest (say 32 degree) btree, which will be somewhat slower to load and read (30% - 60%), but not be inordinately slow on delete.
|
and the minor optimization of not calling a copy that is going to do nothing anyway (as [index+1:] gives an empty slice when index==len(*s)-1 so copy into an empty slice does nothing anyway) is missed... right? (edit: or omit the if? profiling might show the cpu is happier with straight-line rather than branching code...)
It is sooo fast. And inserts are fantastically fast too. I mean, a full in-order read so
much faster than the built-in go map it is like 2x ridiculous--probably due to way fewer
cache misses. But the thing is, deletes are suuuper slow in comparison. Do you
have any intuition as to why deletes from the btree are so slow? Could tombstoning help?
I saw the comments on Clear but I want to support arbitrary delete patterns
and not have them be so very different from insert.
Comparison to built in Go map:
The text was updated successfully, but these errors were encountered: