Skip to content

Instantly share code, notes, and snippets.

@igniteflow
Created February 20, 2012 16:37
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save igniteflow/1870027 to your computer and use it in GitHub Desktop.
Save igniteflow/1870027 to your computer and use it in GitHub Desktop.
A very simple implementation of a Redis producer-consumer messaging queue in Python
import redis
import time
import sys
def producer():
r = redis.Redis()
i = 0
while True:
r.rpush('queue', 'Message %d' % i)
i += 1
time.sleep(1)
def consumer():
r = redis.Redis()
while True:
val = r.blpop('queue')
print 'Consuming: (%s, %s)' % val
if __name__ == '__main__':
"""
Open up two terminals and run the two commands separately
"""
if sys.argv[1] == 'consumer':
print "Starting consumer: "
consumer()
else:
print "Starting producer: "
producer()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment