As demonstrated by the benchmarks in this reddit post, you can see the rust_tonic_mt benchmark falling behind in performance as the number of threads are increased.
The likely cause for this could be that a big portion of the shared state is behind this Mutex.
As demonstrated by the benchmarks in this reddit post, you can see the
rust_tonic_mtbenchmark falling behind in performance as the number of threads are increased.The likely cause for this could be that a big portion of the shared state is behind this
Mutex.