2006-02-24 14:07:01 +08:00
|
|
|
"Database cache backend."
|
|
|
|
|
|
|
|
from django.core.cache.backends.base import BaseCache
|
2010-08-05 10:13:32 +08:00
|
|
|
from django.db import connections, router, transaction, DatabaseError
|
2006-02-24 14:07:01 +08:00
|
|
|
import base64, time
|
|
|
|
from datetime import datetime
|
|
|
|
try:
|
|
|
|
import cPickle as pickle
|
|
|
|
except ImportError:
|
|
|
|
import pickle
|
|
|
|
|
2010-08-05 10:13:32 +08:00
|
|
|
class Options(object):
|
|
|
|
"""A class that will quack like a Django model _meta class.
|
|
|
|
|
|
|
|
This allows cache operations to be controlled by the router
|
|
|
|
"""
|
|
|
|
def __init__(self, table):
|
|
|
|
self.db_table = table
|
|
|
|
self.app_label = 'django_cache'
|
|
|
|
self.module_name = 'cacheentry'
|
|
|
|
self.verbose_name = 'cache entry'
|
|
|
|
self.verbose_name_plural = 'cache entries'
|
|
|
|
self.object_name = 'CacheEntry'
|
|
|
|
self.abstract = False
|
|
|
|
self.managed = True
|
|
|
|
self.proxy = False
|
|
|
|
|
2010-11-02 13:55:08 +08:00
|
|
|
class BaseDatabaseCacheClass(BaseCache):
|
2006-02-24 14:07:01 +08:00
|
|
|
def __init__(self, table, params):
|
|
|
|
BaseCache.__init__(self, params)
|
2010-08-05 10:13:32 +08:00
|
|
|
self._table = table
|
|
|
|
|
|
|
|
class CacheEntry(object):
|
|
|
|
_meta = Options(table)
|
|
|
|
self.cache_model_class = CacheEntry
|
|
|
|
|
2010-11-02 13:55:08 +08:00
|
|
|
class CacheClass(BaseDatabaseCacheClass):
|
2006-02-24 14:07:01 +08:00
|
|
|
def get(self, key, default=None):
|
2010-09-13 02:45:26 +08:00
|
|
|
self.validate_key(key)
|
2010-08-05 10:13:32 +08:00
|
|
|
db = router.db_for_read(self.cache_model_class)
|
|
|
|
table = connections[db].ops.quote_name(self._table)
|
|
|
|
cursor = connections[db].cursor()
|
|
|
|
|
|
|
|
cursor.execute("SELECT cache_key, value, expires FROM %s WHERE cache_key = %%s" % table, [key])
|
2006-02-24 14:07:01 +08:00
|
|
|
row = cursor.fetchone()
|
|
|
|
if row is None:
|
|
|
|
return default
|
|
|
|
now = datetime.now()
|
|
|
|
if row[2] < now:
|
2010-08-05 10:13:32 +08:00
|
|
|
db = router.db_for_write(self.cache_model_class)
|
|
|
|
cursor = connections[db].cursor()
|
|
|
|
cursor.execute("DELETE FROM %s WHERE cache_key = %%s" % table, [key])
|
|
|
|
transaction.commit_unless_managed(using=db)
|
2006-02-24 14:07:01 +08:00
|
|
|
return default
|
2010-08-05 10:13:32 +08:00
|
|
|
value = connections[db].ops.process_clob(row[1])
|
2009-03-14 05:04:48 +08:00
|
|
|
return pickle.loads(base64.decodestring(value))
|
2006-02-24 14:07:01 +08:00
|
|
|
|
|
|
|
def set(self, key, value, timeout=None):
|
2010-09-13 02:45:26 +08:00
|
|
|
self.validate_key(key)
|
2008-08-10 11:52:21 +08:00
|
|
|
self._base_set('set', key, value, timeout)
|
2007-10-20 23:16:34 +08:00
|
|
|
|
2007-10-22 03:19:32 +08:00
|
|
|
def add(self, key, value, timeout=None):
|
2010-09-13 02:45:26 +08:00
|
|
|
self.validate_key(key)
|
2007-10-22 03:19:32 +08:00
|
|
|
return self._base_set('add', key, value, timeout)
|
|
|
|
|
2007-10-20 23:16:34 +08:00
|
|
|
def _base_set(self, mode, key, value, timeout=None):
|
2006-02-24 14:07:01 +08:00
|
|
|
if timeout is None:
|
|
|
|
timeout = self.default_timeout
|
2010-08-05 10:13:32 +08:00
|
|
|
db = router.db_for_write(self.cache_model_class)
|
|
|
|
table = connections[db].ops.quote_name(self._table)
|
|
|
|
cursor = connections[db].cursor()
|
|
|
|
|
|
|
|
cursor.execute("SELECT COUNT(*) FROM %s" % table)
|
2006-02-24 14:07:01 +08:00
|
|
|
num = cursor.fetchone()[0]
|
|
|
|
now = datetime.now().replace(microsecond=0)
|
|
|
|
exp = datetime.fromtimestamp(time.time() + timeout).replace(microsecond=0)
|
|
|
|
if num > self._max_entries:
|
2010-08-05 10:13:32 +08:00
|
|
|
self._cull(db, cursor, now)
|
2006-02-24 14:07:01 +08:00
|
|
|
encoded = base64.encodestring(pickle.dumps(value, 2)).strip()
|
2010-08-05 10:13:32 +08:00
|
|
|
cursor.execute("SELECT cache_key, expires FROM %s WHERE cache_key = %%s" % table, [key])
|
2006-02-24 14:07:01 +08:00
|
|
|
try:
|
2009-03-02 11:15:27 +08:00
|
|
|
result = cursor.fetchone()
|
|
|
|
if result and (mode == 'set' or
|
|
|
|
(mode == 'add' and result[1] < now)):
|
2010-08-05 10:13:32 +08:00
|
|
|
cursor.execute("UPDATE %s SET value = %%s, expires = %%s WHERE cache_key = %%s" % table,
|
|
|
|
[encoded, connections[db].ops.value_to_db_datetime(exp), key])
|
2006-02-24 14:07:01 +08:00
|
|
|
else:
|
2010-08-05 10:13:32 +08:00
|
|
|
cursor.execute("INSERT INTO %s (cache_key, value, expires) VALUES (%%s, %%s, %%s)" % table,
|
|
|
|
[key, encoded, connections[db].ops.value_to_db_datetime(exp)])
|
2006-02-24 14:07:01 +08:00
|
|
|
except DatabaseError:
|
|
|
|
# To be threadsafe, updates/inserts are allowed to fail silently
|
2010-08-05 10:13:32 +08:00
|
|
|
transaction.rollback_unless_managed(using=db)
|
2008-08-10 11:52:21 +08:00
|
|
|
return False
|
2006-02-24 14:07:01 +08:00
|
|
|
else:
|
2010-08-05 10:13:32 +08:00
|
|
|
transaction.commit_unless_managed(using=db)
|
2008-08-10 11:52:21 +08:00
|
|
|
return True
|
2006-02-24 14:07:01 +08:00
|
|
|
|
|
|
|
def delete(self, key):
|
2010-09-13 02:45:26 +08:00
|
|
|
self.validate_key(key)
|
2010-08-05 10:13:32 +08:00
|
|
|
db = router.db_for_write(self.cache_model_class)
|
|
|
|
table = connections[db].ops.quote_name(self._table)
|
|
|
|
cursor = connections[db].cursor()
|
|
|
|
|
|
|
|
cursor.execute("DELETE FROM %s WHERE cache_key = %%s" % table, [key])
|
|
|
|
transaction.commit_unless_managed(using=db)
|
2006-02-24 14:07:01 +08:00
|
|
|
|
|
|
|
def has_key(self, key):
|
2010-09-13 02:45:26 +08:00
|
|
|
self.validate_key(key)
|
2010-08-05 10:13:32 +08:00
|
|
|
db = router.db_for_read(self.cache_model_class)
|
|
|
|
table = connections[db].ops.quote_name(self._table)
|
|
|
|
cursor = connections[db].cursor()
|
|
|
|
|
2009-03-02 11:15:27 +08:00
|
|
|
now = datetime.now().replace(microsecond=0)
|
2010-08-05 10:13:32 +08:00
|
|
|
cursor.execute("SELECT cache_key FROM %s WHERE cache_key = %%s and expires > %%s" % table,
|
|
|
|
[key, connections[db].ops.value_to_db_datetime(now)])
|
2006-02-24 14:07:01 +08:00
|
|
|
return cursor.fetchone() is not None
|
|
|
|
|
2010-08-05 10:13:32 +08:00
|
|
|
def _cull(self, db, cursor, now):
|
2006-02-24 14:07:01 +08:00
|
|
|
if self._cull_frequency == 0:
|
2010-01-27 16:21:35 +08:00
|
|
|
self.clear()
|
2006-02-24 14:07:01 +08:00
|
|
|
else:
|
2010-08-31 08:44:46 +08:00
|
|
|
table = connections[db].ops.quote_name(self._table)
|
2010-08-05 10:13:32 +08:00
|
|
|
cursor.execute("DELETE FROM %s WHERE expires < %%s" % table,
|
|
|
|
[connections[db].ops.value_to_db_datetime(now)])
|
|
|
|
cursor.execute("SELECT COUNT(*) FROM %s" % table)
|
2006-02-24 14:07:01 +08:00
|
|
|
num = cursor.fetchone()[0]
|
|
|
|
if num > self._max_entries:
|
2010-08-05 10:13:32 +08:00
|
|
|
cursor.execute("SELECT cache_key FROM %s ORDER BY cache_key LIMIT 1 OFFSET %%s" % table, [num / self._cull_frequency])
|
|
|
|
cursor.execute("DELETE FROM %s WHERE cache_key < %%s" % table, [cursor.fetchone()[0]])
|
2010-01-27 16:21:35 +08:00
|
|
|
|
|
|
|
def clear(self):
|
2010-08-05 10:13:32 +08:00
|
|
|
db = router.db_for_write(self.cache_model_class)
|
|
|
|
table = connections[db].ops.quote_name(self._table)
|
|
|
|
cursor = connections[db].cursor()
|
|
|
|
cursor.execute('DELETE FROM %s' % table)
|