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
86b04522
Commit
86b04522
authored
Sep 07, 2016
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ZConfig configuration reference docs
parent
abc47ef6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
109 additions
and
4 deletions
+109
-4
buildout.cfg
buildout.cfg
+1
-0
conf.py
conf.py
+3
-1
documentation/reference/storages.rst
documentation/reference/storages.rst
+60
-3
documentation/reference/zodb.rst
documentation/reference/zodb.rst
+42
-0
zodbdocumentationtests/tests.py
zodbdocumentationtests/tests.py
+3
-0
No files found.
buildout.cfg
View file @
86b04522
...
@@ -15,6 +15,7 @@ eggs =
...
@@ -15,6 +15,7 @@ eggs =
docutils
docutils
ZODB
ZODB
j1m.sphinxautointerface
j1m.sphinxautointerface
j1m.sphinxautozconfig
interpreter = stxpy
interpreter = stxpy
scripts =
scripts =
...
...
conf.py
View file @
86b04522
...
@@ -24,7 +24,9 @@
...
@@ -24,7 +24,9 @@
# Add any Sphinx extension module names here, as strings. They can be extensions
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions
=
[
'sphinx.ext.autodoc'
,
'j1m.sphinxautointerface'
]
extensions
=
[
'sphinx.ext.autodoc'
,
'j1m.sphinxautointerface'
,
'j1m.sphinxautozconfig'
]
# Add any paths that contain templates here, relative to this directory.
# Add any paths that contain templates here, relative to this directory.
templates_path
=
[
'.templates'
]
templates_path
=
[
'.templates'
]
...
...
documentation/reference/storages.rst
View file @
86b04522
...
@@ -70,6 +70,18 @@ FileStorage
...
@@ -70,6 +70,18 @@ FileStorage
.. autointerface:: ZODB.FileStorage.interfaces.IFileStoragePacker
.. autointerface:: ZODB.FileStorage.interfaces.IFileStoragePacker
FileStorage text configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
File storages are configured using the ``filestorage`` section::
<filestorage>
path Data.fs
</filestorage>
which accepts the following options:
.. zconfigsectionkeys:: ZODB component.xml filestorage
MappingStorage
MappingStorage
--------------
--------------
...
@@ -77,12 +89,56 @@ MappingStorage
...
@@ -77,12 +89,56 @@ MappingStorage
.. autoclass:: ZODB.MappingStorage.MappingStorage
.. autoclass:: ZODB.MappingStorage.MappingStorage
:members: __init__
:members: __init__
MappingStorage text configuration
---------------------------------
File storages are configured using the ``mappingstorage`` section::
<mappingstorage>
</mappingstorage>
Options:
.. zconfigsectionkeys:: ZODB component.xml mappingstorage
DemoStorage
DemoStorage
-----------
-----------
.. autoclass:: ZODB.DemoStorage.DemoStorage
.. autoclass:: ZODB.DemoStorage.DemoStorage
:members: __init__, push, pop
:members: __init__, push, pop
DemoStorage text configuration
------------------------------
Demo storages are configured using the ``demostorage`` section::
<demostorage>
<filestorage base>
path base.fs
</filestorage>
<mappingstorage changes>
name Changes
</mappingstorage>
</demostorage>
.. -> src
>>> import ZODB.config
>>> storage = ZODB.config.storageFromString(src)
>>> storage.base.getName()
'base.fs'
>>> storage.changes.getName()
'Changes'
``demostorage`` sections can contain up to 2 storage subsections,
named ``base`` and ``changes``, specifying the demo storage's base and
changes storages. See :meth:`ZODB.DemoStorage.DemoStorage.__init__`
for more on the base anc changes storages.
Options:
.. zconfigsectionkeys:: ZODB component.xml demostorage
Noteworthy non-included storages
Noteworthy non-included storages
================================
================================
...
@@ -98,9 +154,10 @@ RelStorage
...
@@ -98,9 +154,10 @@ RelStorage
For more imformation, see http://relstorage.readthedocs.io/en/latest/.
For more imformation, see http://relstorage.readthedocs.io/en/latest/.
ZEO
ZEO
`ZEO <https://github.com/zopefoundation/ZEO>`_
`ZEO <https://github.com/zopefoundation/ZEO>`_ is a client-server
is a client-server database implementation for ZODB. To use
database implementation for ZODB. To use ZEO, you run a ZEO server,
ZEO, you run a ZEO server, and use ZEO clients in your application.
and use ZEO clients in your application. Unlike the included
storages, multiple processes can share the same database.
For more imformation, see https://github.com/zopefoundation/ZEO.
For more imformation, see https://github.com/zopefoundation/ZEO.
...
...
documentation/reference/zodb.rst
View file @
86b04522
...
@@ -31,6 +31,48 @@ Databases
...
@@ -31,6 +31,48 @@ Databases
supportsUndo, undoLog, undoInfo, undoMultiple, undo,
supportsUndo, undoLog, undoInfo, undoMultiple, undo,
transaction, storage
transaction, storage
Database text configuration
---------------------------
Databases are configured with ``zodb`` sections::
<zodb>
cache-size-bytes 100MB
<mappingstorage
</mappingstorage>
</zodb>
A ``zodb`` section must have a storage sub-section specifying a
storage and any of the following options:
.. zconfigsectionkeys:: ZODB component.xml zodb
For a multi-database configuration, use multiple ``zodb`` sections and
give the sections names::
<zodb first>
cache-size-bytes 100MB
<mappingstorage>
</mappingstorage>
</zodb>
<zodb second>
<mappingstorage>
</mappingstorage>
</zodb>
.. -> src
>>> import ZODB.config
>>> db = ZODB.config.databaseFromString(src)
>>> sorted(db.databases)
['first', 'second']
>>> db._cache_size_bytes
104857600
When the configuration is loaded, a single database will be returned,
but all of the databases will be available through the returned
database's ``databases`` attribute.
Connections
Connections
===========
===========
...
...
zodbdocumentationtests/tests.py
View file @
86b04522
...
@@ -34,11 +34,14 @@ def tearDown(test):
...
@@ -34,11 +34,14 @@ def tearDown(test):
def
test_suite
():
def
test_suite
():
here
=
os
.
path
.
dirname
(
__file__
)
here
=
os
.
path
.
dirname
(
__file__
)
guide
=
join
(
here
,
'..'
,
'documentation'
,
'guide'
)
guide
=
join
(
here
,
'..'
,
'documentation'
,
'guide'
)
reference
=
join
(
here
,
'..'
,
'documentation'
,
'reference'
)
return
unittest
.
TestSuite
((
return
unittest
.
TestSuite
((
manuel
.
testing
.
TestSuite
(
manuel
.
testing
.
TestSuite
(
manuel
.
doctest
.
Manuel
()
+
manuel
.
capture
.
Manuel
(),
manuel
.
doctest
.
Manuel
()
+
manuel
.
capture
.
Manuel
(),
join
(
guide
,
'writing-persistent-objects.rst'
),
join
(
guide
,
'writing-persistent-objects.rst'
),
join
(
reference
,
'zodb.rst'
),
join
(
reference
,
'storages.rst'
),
setUp
=
setUp
,
tearDown
=
tearDown
,
setUp
=
setUp
,
tearDown
=
tearDown
,
),
),
))
))
...
...
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