Reputation: 7384
It's clear that a server with a lot of http requests from others puts stress on the server. But what about the responses from other servers.. Let's say my server or machine requested 10000 times from different servers and each will throw back a response data, will those response data put stress on my server?
Upvotes: 0
Views: 52
Reputation: 49789
I think the simple answer will be "depends on response data size and how you process those data".
In general, you should consider at least the following
Upvotes: 1