[wip] Let jsonfile and memcached cache plugins understand fact_caching_timeout=0 (#17565)

* Add support for no-expiration to jsonfile cache

* Let memcached cache use fact_caching_timeout=0

If fact_cache=memcached and fact_caching_timeout=0
memcached would hit a NameError on _expire_keys
pull/17569/head
Adrian Likins 9 years ago committed by Brian Coca
parent 9785e064c1
commit c633022fca

@ -108,6 +108,9 @@ class CacheModule(BaseCacheModule):
def has_expired(self, key):
if self._timeout == 0:
return False
cachefile = "%s/%s" % (self._cache_dir, key)
try:
st = os.stat(cachefile)

Loading…
Cancel
Save