sqlalchemy-bot
sqlalchemy-bot
**Migrated issue, originally created by jvanasco ([jvanasco](https://github.com/jvanasco))** If the region's class has `region_args` set, tearDown breaks. def tearDown(self): if self._region_inst: - for key in self._keys: + for key in self._keys.copy():...
**Migrated issue, originally created by Antoine Bertin ([diaoul](https://github.com/diaoul))** This is feature is already working for the expiration_time in region.configure. I think this should be extended to all expiration_time arguments to...
**Migrated issue, originally created by jvanasco ([jvanasco](https://github.com/jvanasco))** the backend locks in redis is named as such (if you use the backend lock): _lock{0} i'd like to suggest a name change...
**Migrated issue, originally created by jvanasco ([jvanasco](https://github.com/jvanasco))** before trying to build this out, I wanted to propose these extensions to `CacheRegion.get_or_create` and `CacheRegion.cache_on_arguments`: * `callback_get_fn` * `callback_create_fn` If these values...
**Migrated issue, originally created by jvanasco ([jvanasco](https://github.com/jvanasco))** this is really about dogpile/core/dogpile.py , but i figured i'd ask here for the context... my dev logs look like this: ``` #!python...
**Migrated issue, originally created by David Kavanagh ()** I've configured dogpile.cache to use memcached and the python-memcached package. I need to be able to detect when there is a failure...
**Migrated issue, originally created by Diogo Neves ([DiogoNeves](https://github.com/DiogoNeves))** Would be great to invalidate, delete and refresh multiple values using a pattern instead of a list of keys. I guess this...
**Migrated issue, originally created by lxyu ([lxyu](https://github.com/lxyu))** I'm trying to integrate dogpilecache with sqlalchemy to create a real-time cache layer above RDBS. To make it real-time, I'm gonna need the...
**Migrated issue, originally created by s ([sontek](https://github.com/sontek))** We would like our expiration time to re-update on get(), so that actively used items don't fall out of cache or get evicted....
**Migrated issue, originally created by lxyu ([lxyu](https://github.com/lxyu))** do dogpile.cache have this feature yet: one thread refresh the cached value while others directly return the old? so I can update the...