Yes, the dbm module in pypy is basically like the bsddb module in cpython. cpython includes modules for bsddb, gdbm, and more.
I tend to prefer gdbm over bsddb, because I've seen bsddb databases get corrupt too many times - EG, when a filesystem overflows. bsddb might be a little faster though; I've never compared their performance. On Mon, Nov 15, 2010 at 5:22 PM, Amaury Forgeot d'Arc <[email protected]>wrote: > Hi, > > 2010/11/16 Dan Stromberg <[email protected]>: > > I've put together a gdbm wrapper module using ctypes, and tested against > > pypy with the included test_gdbm. Is there interest in adding it to > pypy? > > > > It's at http://stromberg.dnsalias.org/svn/gdbm-ctypes/trunk/ if anyone > wants > > to look it over. > > I don't know exactly what gdbm is, but it looks very similar to dbm.py > already in pypy: > http://codespeak.net/svn/pypy/trunk/lib_pypy/dbm.py > > -- > Amaury Forgeot d'Arc >
_______________________________________________ [email protected] http://codespeak.net/mailman/listinfo/pypy-dev
