Reputation: 28022
I am sending REST based requests to a server. I would like to get the response as quickly as possible and would want to know the various optimizations that can be made.
One way is of course to send these requests in parallel in threads. What other options are available to optimize this?
On the server, part what configurations can be added?
Upvotes: 0
Views: 428
Reputation: 7275
Optimizations for REST calls (or just HTTP calls):
The biggest bang for you buck will definitely be caching though.
Upvotes: 2