
humbedooh at apache
Apr 27, 2012, 1:34 PM
Views: 25
Permalink
|
|
svn commit: r1331581 - in /httpd/httpd/trunk/docs/manual: caching.html.en caching.xml
|
|
Author: humbedooh Date: Fri Apr 27 20:34:06 2012 New Revision: 1331581 URL: http://svn.apache.org/viewvc?rev=1331581&view=rev Log: Missed highlighting two examples Modified: httpd/httpd/trunk/docs/manual/caching.html.en httpd/httpd/trunk/docs/manual/caching.xml Modified: httpd/httpd/trunk/docs/manual/caching.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/caching.html.en?rev=1331581&r1=1331580&r2=1331581&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/caching.html.en (original) +++ httpd/httpd/trunk/docs/manual/caching.html.en Fri Apr 27 20:34:06 2012 @@ -614,9 +614,10 @@ CacheDirLength 1 instructs httpd to open the file when it is started and to re-use this file-handle for all subsequent access to this file.</p> - <div class="example"><p><code> + <pre class="prettyprint lang-config"> CacheFile /usr/local/apache2/htdocs/index.html - </code></p></div> + </pre> + <p>If you intend to cache a large number of files in this manner, you must ensure that your operating system's limit for the number of open @@ -705,9 +706,10 @@ sys 0m0.000s</pre></div> start time (using the mmap system call). httpd will use the in-memory contents for all subsequent accesses to this file.</p> - <div class="example"><p><code> + <pre class="prettyprint lang-config"> MMapFile /usr/local/apache2/htdocs/index.html - </code></p></div> + </pre> + <p>As with the <code class="directive"><a href="./mod/mod_file_cache.html#cachefile">CacheFile</a></code> directive, any Modified: httpd/httpd/trunk/docs/manual/caching.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/caching.xml?rev=1331581&r1=1331580&r2=1331581&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/caching.xml (original) +++ httpd/httpd/trunk/docs/manual/caching.xml Fri Apr 27 20:34:06 2012 @@ -663,9 +663,9 @@ CacheDirLength 1 instructs httpd to open the file when it is started and to re-use this file-handle for all subsequent access to this file.</p> - <example> + <highlight language="config"> CacheFile /usr/local/apache2/htdocs/index.html - </example> + </highlight> <p>If you intend to cache a large number of files in this manner, you must ensure that your operating system's limit for the number of open @@ -755,9 +755,9 @@ sys 0m0.000s</pre> start time (using the mmap system call). httpd will use the in-memory contents for all subsequent accesses to this file.</p> - <example> + <highlight language="config"> MMapFile /usr/local/apache2/htdocs/index.html - </example> + </highlight> <p>As with the <directive module="mod_file_cache">CacheFile</directive> directive, any
|