Skip to content

Instantly share code, notes, and snippets.

@guyroyse
Created June 25, 2020 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guyroyse/ab700577e0a7276b8e99f6adba386dc1 to your computer and use it in GitHub Desktop.
Save guyroyse/ab700577e0a7276b8e99f6adba386dc1 to your computer and use it in GitHub Desktop.
import asyncio
import aioredis
async def main():
redis = await aioredis.create_redis('redis://:foobared@localhost:6379/0', encoding='utf-8')
await asyncio.gather(
publish(redis, 1, 'Possible vocalizations east of Makanda'),
publish(redis, 2, 'Sighting near the Columbia River'),
publish(redis, 2, 'Chased by a tall hairy creature')
)
redis.close()
await redis.wait_closed()
def publish(redis, channel, message):
return redis.publish(f'bigfoot:broadcast:channel:{channel}', message)
asyncio.run(main())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment