Redis Extension for Flask Applications
Project description
Flask-Redis
Add Redis Support to Flask.
Built on top of redis-py
Currently a single namespace within the configuration is supported.
REDIS_URL="redis://localhost"
with the Redis instance automatically loading variables from this namespace.
In the future, the ability to declare multiple Redis namespaces will be available
REDIS_CACHE_URL="redis://localhost/0"
REDIS_METRICS_URL="redis://localhost/0"
redis_cache = Redis(config_prefix="REDIS_CACHE")
redis_metrics = Redis(config_prefix="REDIS_METRICS")
Installation
pip install flask-redis
Or if you must use easy_install:
alias easy_install="pip install $1"
easy_install flask-redis
Configuration
ToDo Add Settings
from flask import Flask
from flask_redis import Redis
app = Flask(__name__)
redis_store = Redis(app)
or
from flask import Flask
from flask_redis import Redis
redis_store = Redis()
def create_app():
app = Flask(__name__)
redis.init_app(app)
return app
Usage
from core import redis_store
@app.route('/')
def index():
return redis_store.get('potato','Not Set')
Protip: The redis-py package currently holds the ‘redis’ namespace, so if you are looking to make use of it, your Redis object shouldn’t be named ‘redis’.
For detailed instructions regarding the usage of the client, check the redis-py documentation.
Advanced features, such as Lua scripting, pipelines and callbacks are detailed within the projects README.
History
0.0.1 (5/7/2013)
Conception
Initial Commit of Package to GitHub.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Flask-Redis-0.0.1.tar.gz
.
File metadata
- Download URL: Flask-Redis-0.0.1.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7367bd83ce3f143d5fc39b7d027462c8e72358d44825132391d470bda8062bd8 |
|
MD5 | 8b1ea6d308ce753aa4bb284b5d284927 |
|
BLAKE2b-256 | 0fb7c405a6b585a7d47b7a9d917d4a77f7d553542e4133025b2b3fe7a69b586d |