Request is as :
- request_a is sent and i get a response as "in progress"
- Again, request_a is sent and i get a response as "in progress"
- Again, request_a is sent and i get a response of "complete data"
What happening in my target server when its responds "in progress" is that the server is taking time to cache the data in the server. Here, the 3rd request is returned with complete data.
What I need is : all 3 requests should wait until it gets complete data. So that I can check the real load of the request_a connecting to database-fetching data and giving response
Note: I am checking by clearing the cache manually from the server.