Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
4de0c2be
Commit
4de0c2be
authored
Oct 05, 2002
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge changes from release branch into trunk.
parent
5aded0a4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
9 deletions
+20
-9
doc/ZEO/ClientStorage.txt
doc/ZEO/ClientStorage.txt
+9
-2
doc/ZEO/NonZopeREADME.txt
doc/ZEO/NonZopeREADME.txt
+4
-4
doc/ZEO/ZopeREADME.txt
doc/ZEO/ZopeREADME.txt
+3
-3
lib/python/BDBStorage/tests/testall.py
lib/python/BDBStorage/tests/testall.py
+4
-0
No files found.
doc/ZEO/ClientStorage.txt
View file @
4de0c2be
...
...
@@ -23,7 +23,9 @@ ClientStorage
- a sequence of the previous two
If a sequence of addresses is specified, the client will use the
first server from the list that it can connect to.
first server from the list that it can connect to, subject to the
constraints imposed by the optional read_only and
read_only_fallback keyword arguments.
The ClientStorage constructor provides a number of additional
options (arguments). The full list of arguments is:
...
...
@@ -36,7 +38,7 @@ ClientStorage
default name for both the server and client is '1'.
cache_size -- The number of bytes to allow for the client cache.
The default is 20
,000,000
. A large cache can significantly
The default is 20
MB
. A large cache can significantly
increase the performance of a ZEO system. For applications that
have a large database, the default size may be too small.
...
...
@@ -93,3 +95,8 @@ ClientStorage
Each storage served by a ZEO server can be configured as either
read-write or read-only.
read_only_fallback -- A flag indicating whether a read-only
remote storage should be acceptable as a fallback when no
writable storages are available. Defaults to false. At most
one of read_only and read_only_fallback should be true.
doc/ZEO/NonZopeREADME.txt
View file @
4de0c2be
...
...
@@ -20,7 +20,7 @@ Zope Enterprize Objects
python test.py -v
Run the script with the -h option for a full list of options. The
ZEO 2.0
a1 release contains 87
unit tests on Unix.
ZEO 2.0
b2 release contains 122
unit tests on Unix.
Starting (and configuring) the ZEO Server
...
...
@@ -75,6 +75,6 @@ Zope Enterprize Objects
Dependencies on other modules
ZEO depends on other modules that are distributed with
StandaloneZODB and with Zope. You can download StandaloneZODB
from
http://www.zope.org/Products/StandaloneZODB.
ZEO depends on other modules that are distributed with
ZODB3 and
with Zope. You can download ZODB3 from
http://www.zope.org/Products/StandaloneZODB.
doc/ZEO/ZopeREADME.txt
View file @
4de0c2be
Zope Enterprise Objects
Zope Enterprise Objects
(ZEO)
Installation
...
...
@@ -19,7 +19,7 @@ Zope Enterprise Objects
python test.py -v
Run the script with the -h option for a full list of options. The
ZEO 2.0
a1 release contains 87
unit tests on Unix.
ZEO 2.0
b2 release contains 122
unit tests on Unix.
Starting (and configuring) the ZEO Server
...
...
@@ -93,4 +93,4 @@ Zope Enterprise Objects
once with the environment variable FORCE_PRODUCT_LOAD set.
The interaction between ZEO and Zope product installation is
unfortunate.
In the future, this interaction will be removed by
unfortunate.
lib/python/BDBStorage/tests/testall.py
View file @
4de0c2be
...
...
@@ -27,6 +27,10 @@ def suite():
alltests
.
addTest
(
mod
.
test_suite
())
return
alltests
def
test_suite
():
# Just to silence the top-level test.py
return
None
if
__name__
==
'__main__'
:
...
...
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