git checkout -b <branchname>
git add
git commit -m "description of changes"
| """Flask extension utility.""" | |
| from flask.sessions import SessionInterface, SessionMixin | |
| from werkzeug.contrib.cache import MemcachedCache | |
| import memcache # Use https://code.launchpad.net/~songofacandy/python-memcached/mixin-threading | |
| def setup_cache(app): | |
| """ | |
| Setup ``app.cache``. |