low-end persistence strategies?

Diez B. Roggisch deetsNOSPAM at web.de
Wed Feb 16 09:11:46 EST 2005


Paul Rubin wrote:

> "Diez B. Roggisch" <deetsNOSPAM at web.de> writes:
>> Maybe ZODB helps.
> 
> I think it's way too heavyweight for what I'm envisioning, but I
> haven't used it yet.  I'm less concerned about object persistence
> (just saving strings is good enough) than finding the simplest
> possible approach to dealing with concurrent update attempts.

And that's exactly where zodb comes into play. It has full ACID support.
Opening a zodb is a matter of three lines of code - not to be compared to
rdbms'ses. And apart from some standard subclassing, you don't have to do
anything to make your objects persistable. Just check the tutorial.
-- 
Regards,

Diez B. Roggisch



More information about the Python-list mailing list