Better fix for serializing/deserializing cache plugins (v2)

This commit is contained in:
James Cammarata 2015-05-07 23:56:33 -05:00
parent cd6d1f9221
commit 0f1eb3cfc2
4 changed files with 17 additions and 9 deletions

View file

@ -24,8 +24,6 @@ class CacheModule(BaseCacheModule):
def __init__(self, *args, **kwargs):
self._cache = {}
super(CacheModule, self).__init__()
def get(self, key):
return self._cache.get(key)
@ -46,3 +44,9 @@ class CacheModule(BaseCacheModule):
def copy(self):
return self._cache.copy()
def __getstate__(self):
return self.copy()
def __setstate__(self, data):
self._cache = data