Blobscan / blobscan-indexer.rs

Blobscan's indexer rewritten in Rust.
https://blobscan.com/
MIT License
36 stars 11 forks source link

perf: improve multi-thread synchronisation by using a thread pool #54

Open PJColombo opened 7 months ago

PJColombo commented 7 months ago

By adopting a thread pool, we can significantly reduce the overhead associated with dynamically spawning threads for each syncing operation we execute.

Redidacove commented 6 months ago

Can you specify which part of code needs the thread pool synchronization of this project I am new to this but would like to try my knowledge of rust.