Skip to content

Instantly share code, notes, and snippets.

@bamthomas
Created November 28, 2012 22:16
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save bamthomas/4165078 to your computer and use it in GitHub Desktop.
Save bamthomas/4165078 to your computer and use it in GitHub Desktop.
Pub/Sub redis python
from multiprocessing.process import Process
import time
import redis
def pub(myredis):
for n in range(10):
myredis.publish('channel','blah %d' % n)
time.sleep(5)
def sub(myredis, name):
pubsub = myredis.pubsub()
pubsub.subscribe(['channel'])
for item in pubsub.listen():
print '%s : %s' % (name, item['data'])
if __name__ == '__main__':
myredis = redis.Redis()
Process(target=pub, args=(myredis,)).start()
Process(target=sub, args=(myredis,'reader1')).start()
Process(target=sub, args=(myredis,'reader2')).start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment