-
Notifications
You must be signed in to change notification settings - Fork 150
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
DOC: Comparison with HashMap #44
Comments
Also comparison here rust-lang/rust#45282 Perf assessment: nothing too surprising. Ordermap holds up in the sense of having a usable performance but not the best for this use case. perf comparison. With regular hashmap first, with ordermap second.
|
rustc now uses hashbrown right? It's also been a long time. It might be interesting to try this again? |
Well, it's certain that indexmap doesn't compete with hashbrown for performance in general. There are some special cases where indexmap might be faster, like for example iteration. |
@bluss & @cuviper How feasible (if at all) do you think it is to make I ask specifically because I've been seeing some pretty sad resizing behavior, which I've since built a fix for, but the way |
See the list here: rust-lang/rust#45273 (comment)
The text was updated successfully, but these errors were encountered: