Metadata-Version: 1.1
Name: django-uwsgi-cache
Version: 0.1.0
Summary: uWSGI cache backend.
Home-page: https://github.com/ionelmc/django-uwsgi-cache
Author: Ionel Cristian Mărieș
Author-email: contact@ionelmc.ro
License: BSD
Description: ===========================
            django-uwsgi-cache
        ===========================
        
        Packaging of code from http://uwsgi-docs.readthedocs.org/en/latest/WebCaching.html with some small
        changes.
        
        Installation
        ============
        
        ``pip install django-uwsgi-cache`` and change settings to::
        
            CACHES = {
                'default': {
                    'BACKEND': 'uwsgicache.UWSGICache',
                }
            }
        
        or for Django older than 1.3::
        
            CACHE_BACKEND = "uwsgicache://" # a unix or tcp socket address, leave empty to use local uwsgi
        
        Settings
        ========
        
        ``UWSGI_CACHE_FALLBACK``
        
        - ``False`` - raises Exception if ``uwsgi`` cannot be imported.
        - ``True`` (default) - if uwsgi is not importable this cache backend will alias
          to LocMemCache. Note that south or other mangement commands might try to load
          the cache backend so this is why it's the default.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
