aboutsummaryrefslogtreecommitdiff
path: root/python/python3-ZEO/README
diff options
context:
space:
mode:
authorYth - Arnaud <yth@ythogtha.org>2023-07-08 08:54:40 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2023-07-08 08:54:40 +0700
commit9256c63b2d4dd9134117170456c5233afe1da90e (patch)
tree5deddde552baf40c544c30044e84794b7dcd5d21 /python/python3-ZEO/README
parent489f38fe1c3992fe9367f4f8a3e5423c71ee6bff (diff)
python/python3-ZEO: Added (Single-server client-server DB for ZODB).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-ZEO/README')
-rw-r--r--python/python3-ZEO/README9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/python3-ZEO/README b/python/python3-ZEO/README
new file mode 100644
index 0000000000..f3365a1653
--- /dev/null
+++ b/python/python3-ZEO/README
@@ -0,0 +1,9 @@
+ZEO - Single-server client-server database server for ZODB
+
+ZEO is a client-server storage for ZODB http://www.zodb.org for
+sharing a single storage among many clients. When you use ZEO, a
+lower-level storage, typically a file storage, is opened in the ZEO
+server process. Client programs connect to this process using a ZEO
+ClientStorage. ZEO provides a consistent view of the database to all
+clients. The ZEO client and server communicate using a custom
+protocol layered on top of TCP.