[Zope3-dev] Transaction bound cache

2007-09-17 Thread Christian Zagrodnick
Hi i've got a very simple transaction bound cache implementation. That is the cache gets invalidated on transaction end. It's used like this: class Foo(object): data = TransactionBoundCache('_v_store_it_here', dict) where `dict` is the cache factory. Shall I add this to

Re: [Zope3-dev] Re: zope.testbrowser packaging

2007-09-17 Thread Jim Fulton
+1 Also, extras is a miss-feature. Jim On Sep 15, 2007, at 10:43 AM, Philipp von Weitershausen wrote: Benji York wrote: I have a small issue with zope.testbrowser packaging I'd like to get some input on. If I were to have started the project today, it would likely have been

Re: [Zope3-dev] zope.testbrowser packaging

2007-09-17 Thread Jim Fulton
extras are a terrible feature. They aren't fully supported by setuptools and they make it more complicated. Did you write tests for every permutation of your extras? Jim On Sep 15, 2007, at 9:44 PM, Stephan Richter wrote: On Saturday 15 September 2007 08:48, Benji York wrote: 1)

Re: [Zope3-dev] Transaction bound cache

2007-09-17 Thread Jim Fulton
No, that would introduce a dependency on zodb. I suggest a separate package. Jim On Sep 17, 2007, at 6:03 AM, Christian Zagrodnick wrote: Hi i've got a very simple transaction bound cache implementation. That is the cache gets invalidated on transaction end. It's used like this: