79802007

Date: 2025-10-27 15:50:51
Score: 4
Natty:
Report link

Your code is well written -
The issue may be in your "real app", if your server is standard synchronous server that runs with one worker - you are creating bottleneck, as your server can handle one task each time.
you send 5 requests concurrently, but your server put them in queue, and serve one request each time (even if your server is async). do you use time.sleep() in your server?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31765469