I've some services built on Node.js and React.js as client for my web app.
Now I've a route in my web app which fetches information from multiple services. These information fetched are going to be public information, no auth needed before fetching these information.
Should I send a single request to one service and fetch other information from the other services using my message broker or should I send multiple requests from my client and fetch the information.
I felt using messages are slow when compared to the multiple requests sent simultaneously from the client.
Am I wrong? Need suggestions.
question from:https://stackoverflow.com/questions/65931308/multiple-requests-or-message-broker