[Zope-dev] PHP vs Zope cost benefit
R. David Murray
bitz@bitdance.com
Wed, 24 Apr 2002 17:44:41 -0400 (EDT)
On Wed, 24 Apr 2002, Jason Spisak wrote:
> This means that every Update/Insert command make sthe ZODB
> grow, right? Has anyone had experience with Packing a site
> with high traffic in a case like this (RDBMS backend)? What
> happens?
No, and RDBMS update or insert does *not* cause the zodb to
grow (unless zodb data is changed at the same time).
Perhaps you are confusing current-transaction-rollback and Undo?
Zope supports the former with RDBs, but not the latter. That is,
once the transaction is *comitted*, it can't be rolled back by Zope.
Might be a nice feature to add, though, for databases that support
it <grin>.
--RDM