Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good way to connect multiple clients to the server?

As there are several ways of connecting multiclients to the server such as: fork, select, threads, etc. I would be glad if you could describe which is better to connect multiple clients to the server?

like image 309
make Avatar asked Dec 03 '22 13:12

make


1 Answers

Take a look at the C10K page for a great overview and comparison of I/O frameworks and strategies.

like image 133
Nikolai Fetissov Avatar answered Apr 28 '23 13:04

Nikolai Fetissov