Metadata-Version: 1.1
Name: Flask-Cache-Redis-Cluster
Version: 0.0.3
Summary: Adds redis cluster caching support to the Flask Cache(ing) extension
Home-page: https://github.com/Richard-Mathie/Flask-Cache-Redis-Cluster
Author: Richard Mathie
Author-email: richard.mathie@cantab.net
License: BSD
Description: 
        Flask-Cache-Redis-Cluster
        =============
        Implements a redis cluster backend for Flask-Cache(ing)
        as the standard redis cache cannot handle a redis cluster.
        
        Usage
        -----
        The redis cluster backend can be imported vire the Cache Extension by:
        .. code:: python
            from flask import Flask
            from flask_caching import Cache
            app = Flask(__name__)
            # For more configuration options, check out the documentation
            cache = Cache(app, config={'CACHE_TYPE': 'flask_cache_redis_cluster.rediscluster'})
        Links
        =====
        * `Documentation <https://pythonhosted.org/Flask-Caching/>`_
        * `Original Flask-Cache Extension <https://github.com/thadeusb/flask-cache>`_
        * `Werkzeug Cache <http://werkzeug.pocoo.org/docs/0.11/contrib/cache/>`_
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
