February 2018
Beginner to intermediate
348 pages
9h 40m
English
This section lists various features of Nginx and Apache:
|
Features |
Nginx |
Apache |
|
HTTP request management (how the web server processes client requests) |
Event-driven architecture: In this architecture, requests are accepted using asynchronous sockets and aren't processed in separate threads, in order to reduce memory and CPU overhead. |
Synchronous sockets, threads, and processes: In this, each request is in a separate thread or process and uses synchronous sockets. |
|
Programming language (the language the web server is written in) |
C: The C language is notably low-level and offers more accurate memory management. |
C and C++: Although Apache was written in C, many modules were designed with C++. |
Read now
Unlock full access