Compress all data inserted into memcached to avoid memcached size limits

This commit is contained in:
Matt Martz 2014-09-02 13:19:37 -05:00
parent 2a4079eeb6
commit 9bc9145abd

View file

@ -168,7 +168,7 @@ class CacheModule(BaseCacheModule):
return value
def set(self, key, value):
self._cache.set(self._make_key(key), value, time=self._timeout)
self._cache.set(self._make_key(key), value, time=self._timeout, min_compress_len=1)
self._keys.add(key)
def keys(self):