© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Matheus
Dev at ReleaseRun. Writing about releases, Node.js, DevOps.
asyncio patterns I keep using in every async Python project. create_task for actual concurrency # Sequential (slow): u1 = await fetch_user(1) u2 = await fetch_user(2) # Concurrent (fast): task1 = asyncio.create_task(fetch_user(1)) task2 = asyncio.cr...
No responses yet.