Skip to main content

Redis support for Muffin framework.

Project description

Muffin-Redis – Redis support for Muffin framework.

Tests Status PYPI Version Python Versions

Requirements

  • python >= 3.7

Installation

Muffin-Redis should be installed using pip:

pip install muffin-redis

Usage

Setup the plugin and connect it into your app:

from muffin import Application
from muffin_redis import Plugin as Redis

# Create Muffin Application
app = Application('example')

# Initialize the plugin
# As alternative: redis = Redis(app, **options)
redis = Redis(address='redis://localhost')
redis.setup(app)

That’s it now you are able to use the plugin inside your views:

@app.route('/some_url', methods=['POST'])
async def some_method(request):
    """Work with redis."""
    value = await redis.get('key')
    if value is None:
        value = ...  # Do some work
        await redis.set('key', value, expire=60)

    return value

For Asyncio the muffin-redis uses aioredis library. So check the library’s docs for futher reference.

Configuration options

Name

Default value

Description

url

"redis://localhost"

Redis connection URL

db

None

Number of the Redis DB

password

None

Connection password

encoding

"utf-8"

Connection encoding

poolsize

10

Connections pool size (set 0 to disable pooling)

decode_responses

True

Decode binary responses

jsonify

False

Use json to store/read objects with get/set

blocking

True

Wait for an available connection

timeout

20

Timeout to get a connection

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/muffin-redis/issues

Contributing

Development of Muffin-Redis happens at: https://github.com/klen/muffin-redis

Contributors

  • klen (Kirill Klenov)

License

Licensed under a MIT license.

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

muffin-redis-3.4.0.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

muffin_redis-3.4.0-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file muffin-redis-3.4.0.tar.gz.

File metadata

  • Download URL: muffin-redis-3.4.0.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for muffin-redis-3.4.0.tar.gz
Algorithm Hash digest
SHA256 20ee1db7b75a088117949e26f9840ef7ccef355ca9ebc9de9a68a466b824dacc
MD5 b683b53f8d4f8325f9d49010dced3a2e
BLAKE2b-256 b62c4779fc2f424886a5f8ad6c6341a493cdf07c36d3c18c23b83dc82b85e8da

See more details on using hashes here.

File details

Details for the file muffin_redis-3.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for muffin_redis-3.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1392993bbc7d988e3e4ec14dd966b24d97f002f78f62fec7f8795107a9bba028
MD5 d6adb5d2e5eb31db027b91de5ecc94ec
BLAKE2b-256 e787bc5aca8656a3e334f9f3ea6887e43404da3bdf3a9f24395f7edbfed74a29

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