Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of Python Object Databases [closed]

I am looking for an object database for Python (no handmade pickles :D).

What are my options (besides the obvious ZODB)?

like image 422
ElenaT Avatar asked Feb 24 '11 14:02

ElenaT


1 Answers

Dobbin. Somewhat similar to ZODB, but much simpler. It looks nice but I haven't tried it myself. I haven't been able to find much information about it. It has been at version 0.2 for over a year. I don't know if it is still being actively maintained, if it is reliable enough for mission-critical applications.

From the description on the site, the main difference between Dobbin and other object databases is that persisted objects are read-only unless they are explicitly "checked out". This may make dealing with objects a little trickier, but it may make the database faster and more memory-efficient.

like image 71
2 revs Avatar answered Oct 06 '22 00:10

2 revs