Skip to content

Instantly share code, notes, and snippets.

@kristoff-it
Last active September 18, 2019 13:43
Show Gist options
  • Save kristoff-it/6bfbffae908bc9243eba8fad328d2bdb to your computer and use it in GitHub Desktop.
Save kristoff-it/6bfbffae908bc9243eba8fad328d2bdb to your computer and use it in GitHub Desktop.
async def add_new_win(pool, winner):
task1 = pool.zincrby('wins_counter', 1, winner)
task2 = pool.incr('total_games_played')
await asyncio.gather(task1, task2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment