Skip to main content

Full featured async Redis cache backend for Django.

Project description

Django Async Redis

https://img.shields.io/pypi/v/django-async-redis.svg https://img.shields.io/travis/Andrew-Chen-Wang/django-async-redis.svg Documentation Status

Introduction

django-async-redis is a full featured Redis cache and session backend for Django.

Requirements

User guide

Installation

Install with pip:

$ python -m pip install django-async-redis

Configure as cache backend

To start using django-async-redis, you should change your Django cache settings to something like:

CACHES = {
    "default": {
        "BACKEND": "django_async_redis.cache.RedisCache",
        "LOCATION": "redis://127.0.0.1:6379/1",
        "OPTIONS": {
            "CLIENT_CLASS": "django_async_redis.client.DefaultClient",
        }
    }
}

django-async-redis uses the aioredis native URL notation for connection strings, it allows better interoperability and has a connection string in more “standard” way. Some examples:

  • redis://[:password]@localhost:6379/0

  • rediss://[:password]@localhost:6379/0

  • unix://[:password]@/path/to/socket.sock?db=0

Three URL schemes are supported:

  • redis://: creates a normal TCP socket connection

  • rediss://: creates a SSL wrapped TCP socket connection

  • unix:// creates a Unix Domain Socket connection

There are several ways to specify a database number:

  • A db querystring option, e.g. redis://localhost?db=0

  • If using the redis:// scheme, the path argument of the URL, e.g. redis://localhost/0

In some circumstances the password you should use to connect Redis is not URL-safe, in this case you can escape it or just use the convenience option in OPTIONS dict:

CACHES = {
    "default": {
        "BACKEND": "django_async_redis.cache.RedisCache",
        "LOCATION": "redis://127.0.0.1:6379/1",
        "OPTIONS": {
            "CLIENT_CLASS": "django_async_redis.client.DefaultClient",
            "PASSWORD": "mysecret"
        }
    }
}

Take care, that this option does not overwrites the password in the uri, so if you have set the password in the uri, this settings will be ignored.

Notes

Since the majority of this code was ported from django-redis, there was one case that had needed a monkeypatch. In django_async_redis.util, we implement CacheKey which subclasses str which helps us know if a cache key was already created. Since aioredis, checks if the cache key is of type str (and others), I had to monkeypatch that check so that a CacheKey instance could also be accepted.

Credit

  • Hey, I’m Andrew. I’m busy in college, but I wanted to help contribute to Django’s async ecosystem.

  • Lots of code is taken from django-redis, including the tests. I just needed to port everything to asyncio and aioredis.

  • I used cookiecutter-pypackage to generate this project.

  • Thank you to Python Discord server’s async topical chat for helping me understand when to use coroutines over sync functions and @Bast and @hmmmm in general because they’re OG.

History

0.1.0 (2020-09-25)

  • First release on PyPI.

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

django-async-redis-0.1.0.tar.gz (23.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_async_redis-0.1.0-py2.py3-none-any.whl (15.9 kB view details)

Uploaded Python 2Python 3

File details

Details for the file django-async-redis-0.1.0.tar.gz.

File metadata

  • Download URL: django-async-redis-0.1.0.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.5

File hashes

Hashes for django-async-redis-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b25525110abc5882a8acb0400b28a28063347419c42e2a98526afe2258f48247
MD5 ee2439226131188348a4177fe579bb71
BLAKE2b-256 eca8087f48fc8ea46e88c941a18bbe078d2fc63327e27792158b7c5702d2ddf7

See more details on using hashes here.

File details

Details for the file django_async_redis-0.1.0-py2.py3-none-any.whl.

File metadata

  • Download URL: django_async_redis-0.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.5

File hashes

Hashes for django_async_redis-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 994569dc7f906670f1e871a56c52a75ec080e667776938e8eaef8ebff8e95210
MD5 5accb0a0999ba7b5b6e09bf21e1dabdf
BLAKE2b-256 526ac5a0dbf37c502c5f5213fa5ba86859af0b7aea315c65fe5f54a4d856a25e

See more details on using hashes here.

Supported by

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