Skip to content

Instantly share code, notes, and snippets.

@ngtrvu
Forked from sunboy-2050/gist:9543963
Last active September 29, 2017 03:09
Show Gist options
  • Save ngtrvu/98c8e2448e4dfb25f219a9c5327f9fda to your computer and use it in GitHub Desktop.
Save ngtrvu/98c8e2448e4dfb25f219a9c5327f9fda to your computer and use it in GitHub Desktop.
python implement redis publish and subscribe
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import time
import redis
import threading
class Listener(threading.Thread):
def __init__(self, r, channels):
threading.Thread.__init__(self)
self.redis = r
self.pubsub = self.redis.pubsub()
self.pubsub.subscribe(channels)
def work(self, item):
print item['channel'], ":", item['data']
def run(self):
for item in self.pubsub.listen():
print item
if item['data'] == "KILL":
print self, "unsubscribed and finished"
self.pubsub.unsubscribe()
break
else:
self.work(item)
time.sleep(3)
if __name__ == "__main__":
r = redis.Redis()
client = Listener(r, ['test', 'test2'])
client.start()
r.publish('test', 'this will reach the listener')
r.publish('test2', 'this will work')
r.publish('fail', 'this will not')
r.publish('test', 'KILL')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment