[ZODB-Dev] Turn off Storing Versions

Barry Warsaw barry@python.org
11 Apr 2003 15:38:36 -0400


On Fri, 2003-04-11 at 15:18, Mark Bucciarelli wrote:
> Is there anyway to turn off the undo history / versioning  in ZODB?  
> (Not sure of the correct term.)
> 
> I don't need an undo history after I commit a transaction and I would 
> to pack less frequently.

No, versions and undo are a feature of the storage you're using.  If you
don't need them at all, use a "minimal" storage such as
BDBMinimalStorage.

-Barry