[sqlalchemy] Cache Invalidation. Alternatives to MapperExtension?

2009-12-14 Thread zende
I wrote a simple layer on top of my models that allows them to be easily inserted into and fetched from memcache. Now, I'm trying to solve the easier part :) -- cache invalidation. I can use mapper extensions, but I'm looking for a cleaner way. The biggest problem with MapperExtension is that

Re: [sqlalchemy] Cache Invalidation. Alternatives to MapperExtension?

2009-12-14 Thread Michael Bayer
zende wrote: I wrote a simple layer on top of my models that allows them to be easily inserted into and fetched from memcache. Now, I'm trying to solve the easier part :) -- cache invalidation. I can use mapper extensions, but I'm looking for a cleaner way. The biggest problem with