0 votes
in NGINX by
How Nginx Can Handle Http Requests?

1 Answer

0 votes
by

Nginx uses the reactor pattern. The main event loop waits for the OS to signal a readiness event­ such that the data is accessible to read from a socket, at which instance it is read into the buffer and processed. A Single thread can serve tens of thousands of simultaneous connections.

Related questions

0 votes
asked Dec 16, 2019 in NGINX by sharadyadav1986
0 votes
asked Oct 25, 2019 in NGINX by rajeshsharma
...