I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2005-02-09 06:29:21-08 by jcohen in response to 66
Re: Why Genezzo?
The FAQ has some background information. If you have a current need for a small SQL database, then you should look at DBD::SQLite or Jeff Zucker's SQL::Statement, since Genezzo is fairly primitive at this point. It has some nice features already: basic constraint support, btree indexing, multi-file tablespaces (so you can split a table, or even a row or column across multiple datafiles), and user-defined functions, but the parsing and query planning needs work. In the (hopefully) near future, the advantages that Genezzo has are its clustered database support, and its overall extensibility. Genezzo lets you define extensions as perl packages and loads them at runtime. The extension information is stored in the dictionary tables, so you can run SQL scripts to enable or disable different extension features. The clustered database support that we are working on is itself a separate package, so you can run your Genezzo database as a small, single-user instance, or update the dictionary with the cluster support, which adds your database to a cluster.

Jeff
Direct Responses: Write a response