rusty_pool
rusty_pool copied to clipboard
Self growing / shrinking ThreadPool implementation based on crossbeam's multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support.
Use cases for the callback functions are: - Extra logging - Thread local initialization - Changing the thread priority
I have packaged `rusty_pool` for Debian, but experience the testsuite failing for the architectures armv5te armv7 i686 mipsel - basically all of the 32bit architectures supported by Debian (overview of...
I'd like to know how this performs compared to Rayon. Is there any benchmark on that regard? Thanks,
This way we do not need any comments and are more disruptive with code. It allows reduces compile time for the user of the library I removed some previously annotated...
I am looking for a thread pool that can expand its capacity dynamically based on demand. My current understanding of your library's implementation is that when execute is called, it...