From 57f1b950ef741af9358573ca6601bb9bb08cfcad Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Tue, 29 Oct 2013 00:45:30 +0900 Subject: [PATCH] Update README.rst --- README.rst | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index a1ec87f6..01e4ad75 100644 --- a/README.rst +++ b/README.rst @@ -532,13 +532,16 @@ size maxSize The maximum header table size. -localSize - The sum of the spaces entries occupied within ``maxLocalSize``. +deflateSize + The sum of the spaces entries occupied within ``maxDeflateSize``. -maxLocalSize +maxDeflateSize The maximum header table size encoder uses. This can be smaller 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:: @@ -589,8 +592,8 @@ Example:: ], "size": 226, "maxSize": 4096, - "localSize": 226, - "maxLocalSize": 4096 + "deflateSize": 226, + "maxDeflateSize": 4096 } }, { @@ -653,8 +656,8 @@ Example:: ], "size": 314, "maxSize": 4096, - "localSize": 314, - "maxLocalSize": 4096 + "deflateSize": 314, + "maxDeflateSize": 4096 } } ]