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
Kirill Smelkov
ZODB
Commits
0711e67f
Commit
0711e67f
authored
Apr 20, 2010
by
Christian Theune
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pull the overview onto the homepage to get some more meat right away.
parent
93138ace
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
31 deletions
+27
-31
index.rst
index.rst
+27
-4
overview.rst
overview.rst
+0
-27
No files found.
index.rst
View file @
0711e67f
...
@@ -4,10 +4,33 @@ ZODB - a native object database for Python
...
@@ -4,10 +4,33 @@ ZODB - a native object database for Python
Don't squeeze your objects into tables: store them in an object database.
Don't squeeze your objects into tables: store them in an object database.
The Zope Object Database (ZODB) provides seamless object persistence in Python.
Overview
It gets rid of requiring a relational database for your object-oriented
========
application and provides you with a powerful and safe object store:
persistence, transactions, scalability, :doc:`and more<overview>`.
Python programs are written with the object-oriented paradigm. You use objects
that reference each other freely and can be of any form and shape: no object
has to adhere to a specific schema and can hold arbitrary information.
Storing those objects in relational databases requires you to give up on the
freedom of reference and schema. The constraints of the relational model
reduces your ability to write object-oriented code.
The ZODB is a native object database, that stores your objects while allowing
you to work with any paradigms that can be expressed in Python. Thereby your
code becomes simpler, more robust and easier to understand.
Also, there is no gap between the database and your program: no glue code to
write, no mappings to configure. Have a look at the tutorial to see, how easy
it is.
Some of the features that ZODB brings to you:
* Transparent persistence for Python objects
* Full ACID-compatible transaction support (including savepoints)
* History/undo ability
* Efficient support for binary large objects (BLOBs)
* Pluggable storages
* Scalable architecture
Documentation
Documentation
...
...
overview.rst
deleted
100644 → 0
View file @
93138ace
Overview
========
Python programs are written with the object-oriented paradigm. You use objects
that reference each other freely and can be of any form and shape: no object
has to adhere to a specific schema and can hold arbitrary information.
Storing those objects in relational databases requires you to give up on the
freedom of reference and schema. The constraints of the relational model
reduces your ability to write object-oriented code.
The ZODB is a native object database, that stores your objects while allowing
you to work with any paradigms that can be expressed in Python. Thereby your
code becomes simpler, more robust and easier to understand.
Also, there is no gap between the database and your program: no glue code to
write, no mappings to configure. Have a look at the tutorial to see, how easy
it is.
Some of the features that ZODB brings to you:
* Transparent persistence for Python objects
* Full ACID-compatible transaction support (including savepoints)
* History/undo ability
* Efficient support for binary large objects (BLOBs)
* Pluggable storages
* Scalable architecture
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