RelStorage, but only InnoDB for mysql
Go to file
Jason Madden 9efc3bf878
sync manifest.in [skip ci]
2016-06-28 15:08:20 -05:00
.travis Stop importing relstorage._compat as six 2016-06-17 10:31:52 -05:00
doc Move to version.txt for sharing with doc/conf.py and use with zest.releaser. [skip ci] 2016-06-28 12:33:02 -05:00
notes Added the ro-replica-conf option, which tells RelStorage to use a 2011-09-24 07:01:32 +00:00
relstorage sync manifest.in [skip ci] 2016-06-28 15:08:20 -05:00
repltest sync manifest.in [skip ci] 2016-06-28 15:08:20 -05:00
.coveragerc Adjust coverage config to better reflect important measures. 2016-06-17 14:59:18 -05:00
.gitignore sync manifest.in [skip ci] 2016-06-28 15:08:20 -05:00
.pylintrc Remove a bunch of legacy ZODB code. Fixes #63. 2016-06-21 10:06:45 -05:00
.travis.yml Enable memcache integration on Travis. Fixes #53. 2016-06-27 09:27:05 -05:00
BUILDOUT.rst Updated the buildout configuration to just run relstorage tests and 2016-06-14 13:43:36 -04:00
CHANGES.rst Back to development: 2.0.0b2 2016-06-28 12:39:01 -05:00
COPYRIGHT.txt Compy with repository policy 2010-04-12 19:26:36 +00:00
LICENSE.txt More policy compliance. 2010-04-12 19:36:44 +00:00
MANIFEST.in sync manifest.in [skip ci] 2016-06-28 15:08:20 -05:00
README.rst Split docs into smaller parts. 2016-06-22 08:58:02 -05:00
bootstrap.py Update to latest bootstrap 2016-06-14 13:54:01 -04:00
buildout-oracle.cfg Prep for 1.4.0: 2010-09-30 10:17:16 +00:00
buildout.cfg Updated the buildout configuration to just run relstorage tests and 2016-06-14 13:43:36 -04:00
doc-requirements.txt Split docs into smaller parts. 2016-06-22 08:58:02 -05:00
setup.cfg configure universal wheels. fixes #81 [skip ci] 2016-06-28 14:37:12 -05:00
setup.py Move to version.txt for sharing with doc/conf.py and use with zest.releaser. [skip ci] 2016-06-28 12:33:02 -05:00
tox.ini PyPy/Psycopg2cffi support. 2016-06-16 17:30:51 -05:00
version.txt Back to development: 2.0.0b2 2016-06-28 12:39:01 -05:00

README.rst

RelStorage is a storage implementation for ZODB that stores pickles in
a relational database. PostgreSQL 8.1 and above, MySQL 5.0.32+ /
5.1.34+, and Oracle 10g and 11g are currently supported. RelStorage
replaced the PGStorage project.


==========
 Features
==========

* It is a drop-in replacement for FileStorage and ZEO.
* There is a simple way to convert FileStorage to RelStorage and back again.
  You can also convert a RelStorage instance to a different relational database.
* Designed for high volume sites: multiple ZODB instances can share the same
  database. This is similar to ZEO, but RelStorage does not require ZEO.
* According to some tests, RelStorage handles high concurrency better than
  the standard combination of ZEO and FileStorage.
* Whereas FileStorage takes longer to start as the database grows due to an
  in-memory index of all objects, RelStorage starts quickly regardless of
  database size.
* Supports undo, packing, and filesystem-based ZODB blobs.
* Both history-preserving and history-free storage are available.
* Capable of failover to replicated SQL databases.
* ``zodbconvert`` utility to copy databases.
* Free, open source (ZPL 2.1)


===============
 Documentation
===============

`Documentation`_ including `installation instructions`_ is hosted on `readthedocs`_.

The complete `changelog`_ is also there.

.. _`Documentation`: http://relstorage.readthedocs.io/en/latest/
.. _`installation instructions`: http://relstorage.readthedocs.io/en/latest/install.html
.. _`readthedocs`: http://relstorage.readthedocs.io/en/latest/
.. _`changelog`: http://relstorage.readthedocs.io/en/latest/changelog.html


=============
 Development
=============

RelStorage is hosted at GitHub:

    https://github.com/zodb/relstorage