1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9">
<TITLE>Apache Web Server Performance Tuning: Keeps Alive</TITLE>
<LINK HREF="performance-3.html" REL=next>
<LINK HREF="performance-1.html" REL=previous>
<LINK HREF="performance.html#toc2" REL=contents>
</HEAD>
<BODY>
<A HREF="performance-3.html">Next</A>
<A HREF="performance-1.html">Previous</A>
<A HREF="performance.html#toc2">Contents</A>
<HR>
<H2><A NAME="s2">2. Keeps Alive</A></H2>
<P>To reduce the bandwidth used by Web traffic, HTTP was extended to allow
more than one request within a single connection. This is called a
<EM>persistent connection</EM> or you can say that the connection is
<EM>kept alive</EM>.
<P>
<H2><A NAME="ss2.1">2.1 Keep Alive</A>
</H2>
<P>If enabled, browsers can establish persistent connections. If disabled,
the Web server will accept only one access per connection.
<P>
<H2><A NAME="ss2.2">2.2 Keep Alive Timeout</A>
</H2>
<P>This specifies the number of seconds to wait for the next request
in a persistent connection. If it is exceeded, the connection is
closed.
<P>
<H2><A NAME="ss2.3">2.3 Max Keep Alive Requests</A>
</H2>
<P>The maximum number of requests allowed during a persistent connection.
<P>
<HR>
<A HREF="performance-3.html">Next</A>
<A HREF="performance-1.html">Previous</A>
<A HREF="performance.html#toc2">Contents</A>
</BODY>
</HTML>
|