Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update how-it-works.rst #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions doc/how-it-works.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
Newt DB Architecture
====================

Newt builds on `ZODB <www.zodb.org>`_ and `Postgresql
Newt builds on `ZODB <http://www.zodb.org/>`_ and `PostgreSQL
<https://www.postgresql.org/>`_. Both of these are mature open-source
projects with years of production experience.

ZODB is an object-oriented database for Python. It provides
transparent object persistence. ZODB has a pluggable storage layer
and Newt leverages `RelStorage
<http://relstorage.readthedocs.io/en/latest/>`_ to store data in
<https://relstorage.readthedocs.io/en/latest/>`_ to store data in
Postgres.

Newt adds conversion of data from the native serialization used by
Expand All @@ -29,5 +29,3 @@ Finally, Newt adds additional convenience APIs to more directly support
it's intended audience. These are intended to augment but not hide
ZODB and RelStorage. Some of these are just aliases. It will be
possible to integrate Newt with existing ZODB applications.