How Does NGINX Work?

NGINX is built to offer low memory usage and high concurrency. Rather than creating new processes for each web request, NGINX uses an asynchronous, event-driven approach where requests are handled in a single thread.

One master process can control multiple worker processes. The master maintains the worker processes, while the workers do the actual processing. All the processes are get in to an event loop along with other connections and are managed asynchronously without blocking other requests

 


Leave a comment