Skip to main content

Redis Extension for Flask Applications

Project description

Flask-Redis

https://travis-ci.org/rhyselsmore/flask-redis.png?branch=master https://pypip.in/d/Flask-Redis/badge.png

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 config 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

Your configuration should be declared within your Flask config. You can declare via a Redis URL

REDIS_URL = "redis://:password@localhost:6379/0"

or you are able to declare the following

REDIS_HOST = "localhost"
REDIS_PASSWORD = "password"
REDIS_PORT = 6379
REDIS_DATABASE = 5

To create the redis instance within your application

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_store.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.3 (6/7/2013)

  • Added TravisCI Testing for Flask 0.9/0.10.

  • Added Badges to README.

0.0.2 (6/7/2013)

  • Implemented a very simple test.

  • Fixed some documentation issues.

  • Included requirements.txt for testing.

  • Included task file including some basic methods for tests.

0.0.1 (5/7/2013)

  • Conception

  • Initial Commit of Package to GitHub.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-Redis-0.0.3.tar.gz (4.3 kB view details)

Uploaded Source

File details

Details for the file Flask-Redis-0.0.3.tar.gz.

File metadata

File hashes

Hashes for Flask-Redis-0.0.3.tar.gz
Algorithm Hash digest
SHA256 aa7d7d0d64cd0b4d80723aca84089c8c917d1ffab390cc9f8405ae9d48c0d4bf
MD5 5616bb10d7cbcc38d5dc69a615f0ca8d
BLAKE2b-256 17664fbccb7a59a095cf3943edcc20079fa5faee45a59e2b68283049b7b2d2b7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page