You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Interesting... It would be possible to make the types in this crate !Send unless a feature flag is enabled.
It might also be worth looking at how to improve the multithreaded performance - eg. dashmap 5.x uses parking_lot instead of its own custom lock implementation, so that might provide some performance benefit.
From running some profiling it seems like most of the performance impact vs serde_json is related to the
IString::itern
.And most of the overhead is due to the multi threaded code (i.e. locks)
The text was updated successfully, but these errors were encountered: