Commit e9b315e3 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Document gzip VSL records

parent e2a3fcc6
...@@ -19,6 +19,7 @@ The Varnish Reference Manual ...@@ -19,6 +19,7 @@ The Varnish Reference Manual
varnishtop.rst varnishtop.rst
shmem.rst shmem.rst
vmod.rst vmod.rst
vsl.rst
.. todo:: .. todo::
The programs: The programs:
......
.. _reference-vsl:
=====================
Shared Memory Logging
=====================
Gzip records
~~~~~~~~~~~~
A Gzip record is emitted for each instance of gzip or gunzip work
performed.
Worst case, an ESI transaction stored in gzip'ed objects but delivered
gunziped, will run into many of these.
The format is::
%c %c %c %d %d %d %d %d
| | | | | | | |
| | | | | | | +- Bit length of compressed data
| | | | | | +---- Bit location of 'last' bit
| | | | | +------- Bit location of first deflate block
| | | | +---------- Bytes output
| | | +------------- Bytes input
| | +---------------- 'E' = ESI, '-' = Plain object
| +------------------- 'F' = Fetch, 'D' = Deliver
+---------------------- 'G' = Gzip, 'U' = Gunzip, 'u' = Gunzip-test
Which in practice could look like::
U F E 182 159 80 80 1392
G F E 159 173 80 1304 1314
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment