Re: [ZODB-Dev] Invalidating caches for module refresh doesn't seem to work

2007-02-01 Thread Dieter Maurer
Philipp von Weitershausen wrote at 2007-1-29 23:46 +0100: After refreshing a product, Zope 2 uses the following stanza in App.RefreshFuncs.autoRefresh() to let the ZODB know that it should invalidate its pickle caches: ... refresh products from ZODB import Connection

Re: [ZODB-Dev] Invalidating caches for module refresh doesn't seem to work

2007-01-30 Thread Jim Fulton
On Jan 29, 2007, at 5:46 PM, Philipp von Weitershausen wrote: After refreshing a product, Zope 2 uses the following stanza in App.RefreshFuncs.autoRefresh() to let the ZODB know that it should invalidate its pickle caches: ... refresh products from ZODB import Connection

[ZODB-Dev] Invalidating caches for module refresh doesn't seem to work

2007-01-29 Thread Philipp von Weitershausen
After refreshing a product, Zope 2 uses the following stanza in App.RefreshFuncs.autoRefresh() to let the ZODB know that it should invalidate its pickle caches: ... refresh products from ZODB import Connection Connection.resetCaches() transaction.commit()