Apache HTTP Server
Original author(s) | Robert McCool |
---|---|
Developer(s) | Apache Software Foundation |
Initial release | 1995 |
Stable release | 2.2.17 / October 19, 2010 |
Preview release | 2.3.11-beta / March 7, 2011 |
Written in | C |
Operating system | Cross-platform |
Available in | English |
Type | Web server |
License | Apache License 2.0 |
Website | http://httpd.apache.org/ |
The Apache HTTP Server, commonly referred to as Apache (pronounced
Apache is developed and maintained by an open community of developers under the auspices of the
Since April 1996 Apache has been the most popular HTTP server software in use. As of February 2011 Apache served over 59.13% of all
Features
Apache supports a variety of features, many implemented as
Popular compression methods on Apache include the external extension module, mod_gzip, implemented to help with reduction of the size (weight) of web pages served over
Apache features configurable error messages,
Performance
Although the main design goal of Apache is not to be the "fastest" web server, Apache does have performance comparable to other "high-performance" web servers. Instead of implementing a single architecture, Apache provides a variety of MultiProcessing Modules (MPMs) which allow Apache to run in a process-based, hybrid (process and thread) or event-hybrid mode, to better match the demands of each particular infrastructure. This implies that the choice of correct MPM and the correct configuration is important. Where compromises in performance need to be made, the design of Apache is to reduce latency and increase throughput, relative to simply handling more requests, thus ensuring consistent and reliable processing of requests within reasonable time-frames.
The Apache version considered by the Apache Foundation as providing high-performances is the multi-threaded version which mixes the use of several processes and several threads per process.
While this architecture works faster than the previous multi-process based topology (because threads have a lower overhead than processes), it does not match the performances of the event-based architecture provided by other servers, especially when they process events with several worker threads.
This difference can be easily explained by the overhead that one thread per connection brings (as opposed to a couple of worker threads per CPU, each processing many connection events). Each thread needs to maintain its own stack, environment, and switching from one thread to another is also an expensive task for CPUs.
See also
Overview & Discussions
Proxy-Servers
References
Further reading
External links
Retrieved from : http://en.wikipedia.org/wiki/Apache_HTTP_Server