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
===========================
......@@ -54,8 +54,7 @@ we want to save space, we could layer a ``ZlibStorage``
db = ZODB.DB(compressed_storage)
`ZlibStorage <https://pypi.python.org/pypi/zc.zlibstorage>`_
compresses database records using the compression algorithm used by
`gzip <http://www.gzip.org/>`_.
compresses database records [#zlib]_.
Python configuration
--------------------
......@@ -197,6 +196,9 @@ make it possible to search objects in large collections.
<https://pypi.python.org/pypi/zc.zlibstorage>`_ is an optional
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
in memory, especially if your `working set
<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