From: Yoshiki Hayashi Date: Wed, 31 Jul 2002 14:42:17 +0000 (+0000) Subject: DeflateMemLevel specifies level (1-9), not bytes. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6162e238aa5c02e270cd6214316eef8f18231d67;p=apache DeflateMemLevel specifies level (1-9), not bytes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96259 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_deflate.html.en b/docs/manual/mod/mod_deflate.html.en index e283db7828..0c475e69e2 100644 --- a/docs/manual/mod/mod_deflate.html.en +++ b/docs/manual/mod/mod_deflate.html.en @@ -1,14 +1,17 @@ -mod_deflate- Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Apache Module mod_deflate

Description:Compress content before - it is delivered to the client
Status:Extension
Module Identifier:deflate_module

Summary

-

The mod_deflate module provides +mod_deflate - Apache HTTP Server

[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Apache Module mod_deflate

Description: + Compress content before + it is delivered to the client
Status: + Extension
Module Identifier: + deflate_module

Summary

+

The mod_deflate module provides the DEFLATE output filter that allows output from your server to be compressed before being sent to the client over the network.

-

Directives

See also

Enabling Compression

+

Directives

See also

Enabling Compression

Compression is implemented by the DEFLATE filter. The following directive @@ -31,19 +34,40 @@ SetOutputFilter DEFLATE SetOutputFilter DEFLATE
</Directory>

-

DeflateBufferSize Directive

Description: Fragment size to be compressed at one time by zlib
Syntax:DeflateBufferSize value
Context:server config
Status:Extension
Module:mod_deflate
+

DeflateBufferSize Directive

Description: + Fragment size to be compressed at one time by zlib
Syntax: + DeflateBufferSize value
Context: + server config
Status: + Extension
Module: + mod_deflate

The DeflateBufferSize directive specifies the size in bytes of the fragments that zlib should compress at one time.

-

DeflateFilterNote Directive

Description: Places the compression ratio in a note for logging
Syntax:DeflateFilterNote notename
Context:server config
Status:Extension
Module:mod_deflate
+

DeflateFilterNote Directive

Description: + Places the compression ratio in a note for logging
Syntax: + DeflateFilterNote notename
Context: + server config
Status: + Extension
Module: + mod_deflate

The DeflateFilterNote directive specifies that a note about compression ratios should be attached to the request. The name of the note is the value specified for the directive.

-

DeflateMemLevel Directive

Description: Amount of memory available to zlib for compression
Syntax:DeflateMemLevel value
Context:server config
Status:Extension
Module:mod_deflate
+

DeflateMemLevel Directive

Description: + How much memory should be used by zlib for compression
Syntax: + DeflateMemLevel value
Context: + server config
Status: + Extension
Module: + mod_deflate

The DeflateMemLevel directive specifies - the amount of memory in bytes available to zlib for compression.

-

DeflateWindowSize Directive

Description: Zlib compression window size
Syntax:DeflateWindowSize value
Context:server config
Status:Extension
Module:mod_deflate
+ how much memory should be used by zlib for compression + (a value between 1 and 9).

+

DeflateWindowSize Directive

Description: + Zlib compression window size
Syntax: + DeflateWindowSize value
Context: + server config
Status: + Extension
Module: + mod_deflate

The DeflateWindowSize directive specifies the zlib compression window size (a value between 1 and 15).


Apache HTTP Server Version 2.0

IndexHome \ No newline at end of file diff --git a/docs/manual/mod/mod_deflate.xml b/docs/manual/mod/mod_deflate.xml index f368679da1..a1d80cd543 100644 --- a/docs/manual/mod/mod_deflate.xml +++ b/docs/manual/mod/mod_deflate.xml @@ -85,13 +85,14 @@ SetOutputFilter DEFLATE DeflateMemLevel -Amount of memory available to zlib for compression +How much memory should be used by zlib for compression DeflateMemLevel value server config

The DeflateMemLevel directive specifies - the amount of memory in bytes available to zlib for compression.

+ how much memory should be used by zlib for compression + (a value between 1 and 9).