Skip to content

Instantly share code, notes, and snippets.

@KunihikoKido
Created August 1, 2013 08:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KunihikoKido/6129406 to your computer and use it in GitHub Desktop.
Save KunihikoKido/6129406 to your computer and use it in GitHub Desktop.
Django キャッシュサーバーへ、Python オブジェクトをキャッシュ
# -*- coding: utf-8 -*-
import hashlib
try:
import cPickle as pickle
except ImportError:
import pickle
class PythonObjectCache(object):
@classmethod
def to_python(cls, value):
return pickle.loads(str(value))
@classmethod
def serialize(cls, obj):
return pickle.dumps(obj)
@classmethod
def set(cls, key, obj, timeout=0):
from django.core.cache import cache
serialized = cls.serialize(obj)
cache.set(key, serialized, timeout)
@classmethod
def get(cls, key, default=None):
from django.core.cache import cache
value = cache.get(key, default)
if value:
return cls.to_python(value)
return default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment