Skip to content

Instantly share code, notes, and snippets.

@guyroyse
Created June 25, 2020 20:14
Show Gist options
  • Save guyroyse/4d7e9fbccdd06f9b55a6e135fa415351 to your computer and use it in GitHub Desktop.
Save guyroyse/4d7e9fbccdd06f9b55a6e135fa415351 to your computer and use it in GitHub Desktop.
import asyncio
import aioredis
from pprint import pp
async def main():
redis = await aioredis.create_redis('redis://:foobared@localhost:6379/0', encoding='utf8')
last_id = '0-0'
while True:
events = await redis.xread(['bigfoot:sightings:stream'], timeout=0, count=5, latest_ids=[last_id])
for key, id, fields in events:
pp(fields)
last_id = id
asyncio.run(main())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment