Does FastAPI do async/await with the decorator functions? I’m confused about why they don’t use async
/await
in their official docs when they’re doing db operations.
Seems like a long db operation as illustrated in the docs would block the whole API, or are they doing some magic?