Reputation: 135
In my mobile app i am using node js API & it is like a commercial app. Heart of the app is video upload. When users uploading video, For example if it reaches 100 000 request at time, how to handle all the request without any traffic congestion in node js API. How to handle this scenario?
Upvotes: 0
Views: 70
Reputation: 196
Using a load balancer and running multiple instances of the app is recommended. Since node is a single-threaded application, you need to run multiple instances to make the most of the processor.
Upvotes: 1