[pygr-notify] Issue 52 in pygr: Move from shelve to sqlite3 storage?

codesite-noreply at google.com codesite-noreply at google.com
Sun Dec 28 07:42:35 PST 2008


Comment #2 on issue 52 by AndreasKlostermann: Move from shelve to sqlite3  
storage?
http://code.google.com/p/pygr/issues/detail?id=52

Sqlite is usually pretty scaleable. I, and other people, have used it for  
Gigabytes
of data. It can even, on a limited scale, access the same database from  
different
processes parallely.

Another interesting database for persistence is Apache's Couchdb. This is  
even easier
to use than Sqlite, even though it requires a server instance and a  
connection to
this instance, but it is extremely scaleable.

If you only need temporary storage, you might want to just create temporary  
files,
pickled via the standard pickler, or json, or yaml. This adds the extra  
work of
keeping tabs on these files, but solves any compatibility issues about  
shelve.


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings



More information about the pygr-notify mailing list