How does the aiohttp server asynchronous behaviour works? #7076
-
Hello, everyone :) I couldn't find in the documentation what it actually means to be a asynchronous server. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, the former (handling multiple requests in a single thread). More generally, it is a server implemented natively in asyncio, so take a look at how asyncio behaves. |
Beta Was this translation helpful? Give feedback.
Yes, the former (handling multiple requests in a single thread). More generally, it is a server implemented natively in asyncio, so take a look at how asyncio behaves.