Skip to content

mister-vio/celery-redis-cluster-backend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

celery-backends-rediscluster

Celery's custom result backend for [RedisCluster].

This implementation is Fork from @hbasria's repo

Usage

  1. pip install celery-redis-cluster-backend

  2. Add the following to celeryconfig.py.

CELERY_RESULT_BACKEND = "celery_redis_cluster_backend.backend.RedisClusterBackend"
CELERY_REDIS_CLUSTER_SETTINGS = { 'startup_nodes': [
    {"host": "localhost", "port": "6379"},
    {"host": "localhost", "port": "6380"},
    {"host": "localhost", "port": "6381"}
]}

About

Celery's custom result backend for RedisCluster

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.9%
  • Makefile 1.1%