-
Notifications
You must be signed in to change notification settings - Fork 472
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
crossbeam-skiplist
: allows lookup to be customized.
#1132
Conversation
I ran across this recently too, unfortunately the skiplist sits in my hot path, so the allocation is unfortunate. Using this PR increased performance by like 10% (for the entire read path, of which the skiplist is only a part of): BeforeYou can see that most of the time stems from allocating and drop_in_place of the Key Arc... After@al8n Very nice change! |
Is there anything that can be done to move this forward? I guess this could be a breaking change, but crossbeam is < 1.0 anyway - I've been thinking of forking crossbeam-skiplist, just so I can get this change into my code base... |
Thank for the PR. To be honest, I suspect that the “efficiency” issue here can actually be resolved in some cases by using the appropriate key wrappers... |
I have already published a forked version |
It seems that @cuviper has tried something similar to this before (indexmap-rs/indexmap#253 (comment)). The approach there does not seem to have type inference issues unlike this PR? (or am I missed something?) |
I finished the changes about flipping |
Nice! Could you revert the turbofish addition on crossbeam-skiplist/tests/map.rs and crossbeam-skiplist/tests/set.rs as well? https://github.com/crossbeam-rs/crossbeam/pull/1132/files#diff-75f4f67227e1c745e030de5d756b0cc4cb11ccd273aac4bd1cf8277d4c7abc30 |
Finished. |
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.
LGTM.
Could I merge this PR? |
The first version of this PR was a breaking change because it required turbofish in some places, but I guess the current version will actually not cause the breakage that would be considered a breaking change. |
Hi, this PR solves #1133, which changes the lookup API from
to
The
equivalent
is the crate used byindexmap
.I would like to suggest this change because when using
SkipMap
, I find the lookup API are limited byBorrow
trait. e.g., withBorrow
trait, this example cannot be implemented as we cannot implementimpl<'a> core::borrow::Borrow<FooRef<'a>> for Foo
because of Rust's rule.After change to
Q: ?Sized + Ord + Comparable<K>
, just like howindexmap
do in its lookup API, the above example can be implemented.This feature is quite important when using some zero-copy deserialization frameworks like
rkyv
's types withSkipMap
to avoid the allocation.Closes #1133