Skip to content

Topic

Server concurrency models

The competing designs a network service uses to handle many simultaneous clients, chiefly a thread or process per connection against a small pool of threads multiplexing non-blocking I/O through an event loop.

Current clusters