Skip to content

Instantly share code, notes, and snippets.

@sivy
Created April 21, 2011 17:54
Show Gist options
  • Select an option

  • Save sivy/935096 to your computer and use it in GitHub Desktop.

Select an option

Save sivy/935096 to your computer and use it in GitHub Desktop.
celery-redis.py
# celery
BROKER_BACKEND = "redis"
BROKER_HOST = "localhost" # Maps to redis host.
BROKER_PORT = 6379 # Maps to redis port.
BROKER_VHOST = "0" # Maps to database number.
CELERY_TRACK_STARTED = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment