You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: !programming@beehaw.org
All things programming and coding related. Subcommunity of Technology.
That’s not 1M concurrent requests.
That’s 100 concurrent requests for a queue of 1M tasks.
Work queue and thread pool is the normal way, but it’s possible to get fancy with optimizations.
Basically you fire 100 requests and when one completes you immediately fire another.