RelStorage, but only InnoDB for mysql
Go to file
Jason Madden 7d783c6903
Move and rename LocalClientBucket to something more fitting.
2016-09-20 06:15:45 -05:00
.travis Adapt code from NextThought to support umysqldb (#110) 2016-07-17 11:23:05 -05:00
doc Need python_full_version, not python_version. 2016-09-08 11:24:32 -05:00
notes Added the ro-replica-conf option, which tells RelStorage to use a 2011-09-24 07:01:32 +00:00
relstorage Move and rename LocalClientBucket to something more fitting. 2016-09-20 06:15:45 -05:00
repltest sync manifest.in [skip ci] 2016-06-28 15:08:20 -05:00
.coveragerc Move and rename LocalClientBucket to something more fitting. 2016-09-20 06:15:45 -05:00
.gitignore Fix boolean testing of the LRUs on Python 3. Modify the algorithm to pre-populate the protected segment directly from the eden segment; this is a modification primarily for the sake of the existing microbenchmarks and may go away. 2016-09-16 18:53:44 -05:00
.pylintrc Remove a bunch of legacy ZODB code. Fixes #63. 2016-06-21 10:06:45 -05:00
.travis.yml Restore -e to the travis install so we get proper test coverage. 2016-09-08 09:23:46 -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.0b7 2016-09-08 07:24:50 -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 Move the ZEO cache doctest to its own file so its a little bit easier to read. 2016-07-12 13:55:29 -05:00
README.rst Drop support for postgresql 8.1. This lets us simplify quite a bit of code. 2016-07-03 12:37:44 -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 Pin older versions of ZEO/ZODB for RTD [skip ci] 2016-08-23 10:41:38 -05:00
setup.cfg configure universal wheels. fixes #81 [skip ci] 2016-06-28 14:37:12 -05:00
setup.py Need python_full_version, not python_version. 2016-09-08 11:24:32 -05:00
tox.ini Switch to recommending and testing mysqlclient on python 2. Fixes #96 2016-06-30 16:02:06 -05:00
version.txt Back to development: 2.0.0b7 2016-09-08 07:24:50 -05:00

README.rst

RelStorage is a storage implementation for ZODB that stores pickles in
a relational database. PostgreSQL 9.0 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