Commit dcae3634 authored by Jim Fulton's avatar Jim Fulton

ZlibStorage uses zlib, not gzip :)

Also the details aren't important here, so moved to a footnote.
parent 5bda7486
=========================== ==========================
Installing and running ZODB Installing and running ZODB
=========================== ===========================
...@@ -54,8 +54,7 @@ we want to save space, we could layer a ``ZlibStorage`` ...@@ -54,8 +54,7 @@ we want to save space, we could layer a ``ZlibStorage``
db = ZODB.DB(compressed_storage) db = ZODB.DB(compressed_storage)
`ZlibStorage <https://pypi.python.org/pypi/zc.zlibstorage>`_ `ZlibStorage <https://pypi.python.org/pypi/zc.zlibstorage>`_
compresses database records using the compression algorithm used by compresses database records [#zlib]_.
`gzip <http://www.gzip.org/>`_.
Python configuration Python configuration
-------------------- --------------------
...@@ -197,6 +196,9 @@ make it possible to search objects in large collections. ...@@ -197,6 +196,9 @@ make it possible to search objects in large collections.
<https://pypi.python.org/pypi/zc.zlibstorage>`_ is an optional <https://pypi.python.org/pypi/zc.zlibstorage>`_ is an optional
package that you need to install separately. package that you need to install separately.
.. [#zlib] ZlibStorage uses the :mod:`zlib` standard module, which
uses the `zlib library <http://www.zlib.net/>`_.
.. [#caches-are-expensive] ZODB can be very efficient at caching data .. [#caches-are-expensive] ZODB can be very efficient at caching data
in memory, especially if your `working set in memory, especially if your `working set
<https://en.wikipedia.org/wiki/Working_set>`_ is small enough to <https://en.wikipedia.org/wiki/Working_set>`_ is small enough to
......
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