<div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#ap_expr">ap_expr (NEW!)</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#ap_listen">ap_listen (changed; back-compatible)</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#ap_mpm">ap_mpm (changed)</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#ap_regex">ap_regex (changed)</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#ap_slotmem">ap_slotmem (NEW!)</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#ap_socache">ap_socache (NEW!)</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#heartbeat">heartbeat (NEW!)</a></li>
<code>ap_mpm_register_timed_callback</code> is new.</p>
</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="section">
+<h2><a name="ap_regex" id="ap_regex">ap_regex (changed)</a></h2>
+
+ <p>In addition to the existing regexp wrapper, a new higher-level API
+ <code>ap_rxplus</code> is now provided. This provides the capability to
+ compile Perl-style expressions like <code>s/regexp/replacement/flags</code>
+ and to execute them against arbitrary strings. Also regexp memory.</p>
+ </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
<h2><a name="ap_slotmem" id="ap_slotmem">ap_slotmem (NEW!)</a></h2>
<p>Introduces an API for modules to allocate and manage memory slots
<tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
<tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_cache</td></tr>
</table>
- <p>Since httpd 2.2.4, responses which are already-expired are not
+ <p>Since httpd 2.2.4, responses which have already expired are not
stored in the cache. The <code class="directive">CacheStoreExpired</code>
directive allows this behavior to be overridden.
<code class="directive">CacheStoreExpired</code> On
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 504183:1000106 (outdated) -->
+<!-- English Revision: 504183:1000128 (outdated) -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
<?xml version="1.0" encoding="EUC-KR" ?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105569:1000106 (outdated) -->
+<!-- English Revision: 105569:1000128 (outdated) -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
using <code>key=value</code> parameters, described in the table
below.</p>
- <p>Setting <code>min</code> will determine how many connections to
- the backend server will be retained after use. Up to the
- Soft Maximum, or <code>smax</code>, number of connections will be
- created on demand. Any connections above <code>smax</code> are
- subject to a time to live, or <code>ttl</code>. Apache httpd will
- never create more than the Hard Maximum or, <code>max</code>,
- connections to the backend server.</p>
+ <p>Setting <code>min</code> to non-zero allows connections to the
+ backend server to be retained after use; at least <code>min</code>
+ connections will be retained. Any idle connections above
+ <code>smax</code> are subject to a time to live, or <code>ttl</code>.
+ Up to the hard maximum, or <code>max</code>, number of connections
+ may be created.</p>
<p>The pool of connections is maintained per web server child
process, and the <code>min</code>, <code>max</code>, and
to the backend server.</td></tr>
<tr><td>smax</td>
<td>max</td>
- <td>Up to the Soft Maximum
- number of connections will be created on demand. Any connections above
- <code>smax</code> are subject to a time to live or <code>ttl</code>.
+ <td>Retained connections above the soft maximum, or <code>smax</code>,
+ are subject to a time to live, controlled by the <code>ttl</code> parameter.
</td></tr>
<tr><td>acquire</td>
<td>-</td>
</td></tr>
<tr><td>ttl</td>
<td>-</td>
- <td>Time To Live for the inactive connections above the
- <code>smax</code> connections in seconds. Apache httpd will close all
- connections that has not been used inside that time period.
+ <td>Time to live for the inactive connections above <code>smax</code>,
+ in seconds. Connections above <code>smax</code> will be closed
+ if they have not been used inside that time period.
</td></tr>
</table>
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 344971:987858 (outdated) -->
+<!-- English Revision: 344971:1000130 (outdated) -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more