POOP / Python (Object Oriented Persistence) ?

Jeremy Hylton jeremy at beopen.com
Thu Jul 6 22:33:05 EDT 2000


fermigier at localhost.localdomain (fermigier) writes:

> I've just read this announcement in Linux Weekly News today:
> 
> ``The Poop on persistence (PerlNews). Perl News talks about two new
> mailing lists for Perl Object Oriented Persistence (Poop). This is an
> effort to encourage communication between module authors and to address
> redundant object persistence issues.  Also read about the latest Perl
> modules.'' (Ref: http://news.perl.org/).
> 
> Is there an opportunity to start such a discussion, or at least to gather
> the solutions that have been developped for Python (and compare them to
> their Perl/Java counterparts) ?

The two Python solutions that come to mind are the pickle and cPickle
modules, which just allow you to save and restore Python objects, and
ZODB, a full-fledged object database from Digital Creations:

http://www.python.org/workshops/2000-01/proceedings/papers/fulton/zodb3.html
http://www.python.org/workshops/2000-01/proceedings/papers/fulton/fulton-zodb3.pdf

If you are willing to compare these with Perl or Java approaches, I'd
be interested to hear what you think.

Jeremy

-- Jeremy Hylton <http://www.python.org/~jeremy/>



More information about the Python-list mailing list