79590112

Date: 2025-04-24 08:30:00
Score: 0.5
Natty:
Report link

It depends heavily what the API calls are doing in the backend. Node.js despite handling requests asynchronously is single threaded. If your logic includes synchronous operations, the overall performance is bound by the execution time of these operations. Start by measuring how the system performs with 1 API call/s, 5 API calls/s and so on. If 1-5 calls/s are very fast and with more calls becoming slower and slower, you definitely have a bottleneck in the backend. Next thing to do, is to build in some logging to measure where your system is spending its time.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mr__Steel