-
-
Notifications
You must be signed in to change notification settings - Fork 961
Closed
Labels
Description
After doing a proper performance evaluation, it would be benefitial to use crossbeam channels instead of the std mpsc channels, because:
- there are some issues with the std channels version of
recv_timeout()(Panic in Receiver::recv() rust-lang/rust#39364) - the current channels are not size-restricted and can lead to large memory usage
- crossbeam channels are "supposed to be" faster.