Redis support for Sanic framework
Project description
Redis support for Sanic framework
Features
Based on the redis library
Easy to use and configurate for your own projects
Installation
This package should be installed using pip:
pip install sanic-redis-extension
Example
from sanic import Sanic, response
from sanic_redis_ext import RedisExtension
app = Sanic(__name__)
# Configuration for Redis
app.config.update({
"REDIS_HOST": "127.0.0.1",
"REDIS_PORT": 6379,
"REDIS_DATABASE": 0,
"REDIS_MAX_CONNECTIONS": 15,
})
RedisExtension(app) # Connection pool is available as `app.ctx.redis` or `app.ctx.extensions['redis']`
@app.route("/")
async def handle(request):
await request.app.ctx.redis.set('test-my-key', 'value')
val = await request.app.ctx.redis.get('test-my-key')
return response.text(val.decode('utf-8'))
License
The sanic-redis-extension is published under BSD license. For more details read LICENSE file.
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 sanic-redis-extension-0.2.0.tar.gz
.
File metadata
- Download URL: sanic-redis-extension-0.2.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16e172b4e5c1ebefdb7a1a88070786d5a4225d2c1cf1161f8668407cbff5cd21 |
|
MD5 | 50252a031b05e3f44a538580dd4ebe1f |
|
BLAKE2b-256 | a4395075bfc05924836fdb75eb46271ba9c4fa4f263c49093a049b33cc9ce7dd |