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
RWLocks can be slow, Mutex might be faster. Obviously might depend on read/write ratio. Needs benchmarks.
Last time I checked, lots of time was spent doing virtual calls to access thread-locals (is_panicking) on low-contention scenarios, see rust-lang/rust#25088.
The text was updated successfully, but these errors were encountered:
RWLock
s can be slow,Mutex
might be faster. Obviously might depend on read/write ratio. Needs benchmarks.Last time I checked, lots of time was spent doing virtual calls to access thread-locals (is_panicking) on low-contention scenarios, see rust-lang/rust#25088.
The text was updated successfully, but these errors were encountered: