Update README.rst

This commit is contained in:
Tatsuhiro Tsujikawa 2013-10-29 00:45:30 +09:00
parent 6c99ff12c9
commit 57f1b950ef
1 changed files with 11 additions and 8 deletions

View File

@ -532,13 +532,16 @@ size
maxSize maxSize
The maximum header table size. The maximum header table size.
localSize deflateSize
The sum of the spaces entries occupied within ``maxLocalSize``. The sum of the spaces entries occupied within ``maxDeflateSize``.
maxLocalSize maxDeflateSize
The maximum header table size encoder uses. This can be smaller The maximum header table size encoder uses. This can be smaller
than ``maxSize``. In this case, encoder only uses up to first than ``maxSize``. In this case, encoder only uses up to first
``maxSize`` buffer. ``maxSize`` buffer. Since the header table size is still
``maxSize``, the encoder keeps track of entries ouside the
``maxDeflateSize`` but inside the ``maxSize``, but it makes sure
that they are no longer referenced.
Example:: Example::
@ -589,8 +592,8 @@ Example::
], ],
"size": 226, "size": 226,
"maxSize": 4096, "maxSize": 4096,
"localSize": 226, "deflateSize": 226,
"maxLocalSize": 4096 "maxDeflateSize": 4096
} }
}, },
{ {
@ -653,8 +656,8 @@ Example::
], ],
"size": 314, "size": 314,
"maxSize": 4096, "maxSize": 4096,
"localSize": 314, "deflateSize": 314,
"maxLocalSize": 4096 "maxDeflateSize": 4096
} }
} }
] ]