You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
505 B
25 lines
505 B
"Dummy cache backend" |
|
|
|
from django.core.cache.backends.base import BaseCache |
|
|
|
class CacheClass(BaseCache): |
|
def __init__(self, *args, **kwargs): |
|
pass |
|
|
|
def add(self, *args, **kwargs): |
|
return True |
|
|
|
def get(self, key, default=None): |
|
return default |
|
|
|
def set(self, *args, **kwargs): |
|
pass |
|
|
|
def delete(self, *args, **kwargs): |
|
pass |
|
|
|
def get_many(self, *args, **kwargs): |
|
return {} |
|
|
|
def has_key(self, *args, **kwargs): |
|
return False
|
|
|