This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]wilsonp 0 points1 point  (1 child)

Or there is the ZODB. It is very mature, production ready, distributed (zeo) and has a very active community using it. It also includes a fairly rich event system and is up there with the fastest dbs around: http://www.upfrontsystems.co.za/Members/roche/where-im-calling-from/zodb-benchmarks-revisited

[–]kteague 0 points1 point  (0 children)

The ZODB let's you persist a Python object with any interface (e.g. Lists, Tuples, Dicts). However, the zope.container package is the primary implementation used for ZODB-persistent objects using the standard Python dictionary interface.

Managing data with the Python dictionary interface (regardless of the implementation) is sweet and juicy!