Skip to content

Instantly share code, notes, and snippets.

@guyroyse
Created June 25, 2020 19:04
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/cf26bcfd22b53df706a750ac33f28042 to your computer and use it in GitHub Desktop.
Save guyroyse/cf26bcfd22b53df706a750ac33f28042 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(
add_to_queue(redis, 'Possible vocalizations east of Makanda'),
add_to_queue(redis, 'Sighting near the Columbia River'),
add_to_queue(redis, 'Chased by a tall hairy creature')
)
redis.close()
await redis.wait_closed()
def add_to_queue(redis, message):
return redis.rpush('bigfoot:sightings:received', message)
asyncio.run(main())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment