Recently, I find myself exploring ways to manage large-scale HTTP requests using Express.js. While I'm aware that Node.js has introduced 'workers' from version 13 onwards for multithreading capabilities, I am curious about how to effectively handle multiple HTTP requests directed at a single endpoint and how to scale up the process.
For instance, if there are around 10,000 simultaneous requests, would another thread automatically initiate to handle the excess requests and enhance processing speed? Or is there a specific configuration that needs to be set up for this to happen seamlessly?
Any insights on this matter would be greatly appreciated!