app/django/core/cache/backends/dummy.py
author Todd Larsen <tlarsen@google.com>
Wed, 01 Oct 2008 06:03:53 +0000
changeset 236 d5302883f3ac
parent 54 03e267d67478
child 323 ff1a9aa48cfd
permissions -rw-r--r--
Changes to make breadcrumbs match page title. This is mostly to see how it looks, since the new soc/logic/site/map.py code is going to implement the breadcrumbs and page title contents in a similar way.

"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):
        pass

    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