On 5/31/06, Simon Belak <[EMAIL PROTECTED]> wrote: > > This looks interesting: > > http://buzhug.sourceforge.net/ > > "a pure-Python database engine, using a Pythonic, no-SQL syntax"
I saw that, too. Things to watch for: 1) threadsafety 2) data integrity (transactions?) 3) data corruption? 4) impact of packing or similar (it does have a cleanup operation) 5) schema evolution (particularly important when you're talking about a non-SQL database, since most SQL databases have "alter') Databases like sqlite, MySQL, PostgreSQL and ZODB have had quite a lot of testing in these regards. There's certainly room for interesting new development, but I tend to be a little paranoid about how I store my data. Given the number of people using MyISAM tables, I know that #2 doesn't matter to everyone. Kevin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

