FastApi sync def vs async def ?
In case you are using Fastapi, when does one use def and async def and how does using one make a difference over the other?
Assuming that you scanned this and know a bit of the async stuff.
async
@route(“/users/info”)
async def userInfo():
user =...
engineering.oohalo.com5 min read