[Zope] Newbie Q: Zope Best Practices

Max Møller Rasmussen maxm@normik.dk
Wed, 16 May 2001 15:48:14 +0200


> From: davelehman@loewen.com [mailto:davelehman@loewen.com]

> 3. Store the stories as objects in the ZODB-- not quite sure what i'm
> talking about on this one yet, but SquishDot does something like
> this, and i've been reading through the squishdot source trying to
> figure it out. Is this substantially the same, or different than (1)?

If you have a site that is heavy transactional with many writes pr. second
like a shopping site, or you have a big catalogue with lots and lots of
rows, or you have data in an ordinary dbms that you need to use for
historical reasons, or because of company policy or whatever. Then you
should use an ordinary rdbms.

If you want to publish content on the web you should just juse ZODB. Far
less hazle, and you can integrate the two approaches later where you have
some parts of your data in the ZODB and other parts in an RDBMS.

Regards Max M