patelnav / flask-caching

Continuation of the Flask-Cache Extension.

Home Page:https://pythonhosted.org/Flask-Caching/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flask-Caching

Build Status Coverage Status PyPI Version License

Adds easy cache support to Flask.

This is a fork of the Flask-Cache extension.

Setup

The Cache Extension can either be initialized directly:

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': 'simple'})

Or through the factory method:

cache = Cache(config={'CACHE_TYPE': 'simple'})

app = Flask(__name__)
cache.init_app(app)

Compatibility with Flask-Cache

There are no known incompatibilities or breaking changes between the latest Flask-Cache release (version 0.13, April 2014) and the current version of Flask-Caching. Due to the change to the Flask-Caching name and the extension import transition, Python import lines like:

from flask.ext.cache import Cache

will need to be changed to:

from flask_caching import Cache

Links

About

Continuation of the Flask-Cache Extension.

https://pythonhosted.org/Flask-Caching/

License:Other


Languages

Language:Python 99.2%Language:Makefile 0.4%Language:HTML 0.3%