jonhoo / volley

Volley is a benchmarking tool for measuring the performance of server networking stacks.
MIT License
123 stars 12 forks source link

Add (e)polling versions of threaded servers #5

Open jonhoo opened 9 years ago

jonhoo commented 9 years ago

It would be interesting to show the performance difference between servers using epoll/select and servers doing blocking operations, in particular because the Go server is (currently) limited to only doing (e)polling.

steveklabnik commented 9 years ago

The Rust version would probably more idiomatically use https://github.com/carllerche/mio than epoll directly.

jonhoo commented 9 years ago

Good point.