Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
dcae3634
Commit
dcae3634
authored
Sep 08, 2016
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZlibStorage uses zlib, not gzip :)
Also the details aren't important here, so moved to a footnote.
parent
5bda7486
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
documentation/guide/install-and-run.rst
documentation/guide/install-and-run.rst
+5
-3
No files found.
documentation/guide/install-and-run.rst
View file @
dcae3634
==========================
=
==========================
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment