Skip to content

Instantly share code, notes, and snippets.

@slemiere
Created April 17, 2012 15:46
Show Gist options
  • Save slemiere/2406982 to your computer and use it in GitHub Desktop.
Save slemiere/2406982 to your computer and use it in GitHub Desktop.
redis queues syntax
all_queues = ["test", "schedule", "process"]
QUEUES = "*"
# ["test", "schedule", "process"]
QUEUES = "test,schedule"
# ["test", "schedule"]
QUEUES = "*~test"
# ["schedule", "process"]
QUEUES = "*~test;process"
# ["schedule"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment