I want to know how much of battery is drained if we do X no. of HTTP request. Putting it in different way, if I want to let the iPhone battery be drained by 10% how many HTTP request I have to make ?

Just to make clear how I want to approach this calculation - it is perfect if the power usage during the handling of the response is not counted. If it is counted the answer would vary depending on the response length making it subjective and scenario driven answer.

The purpose is to let developer optimize as how much http request are justified, but they can do it only if they know the numbers.

link|improve this question
WiFi? 3G? How much time has passed since the last request? – Thilo Dec 6 '11 at 8:53
I wanted to have a general idea. – Samyak Bhuta Dec 6 '11 at 11:19
feedback

2 Answers

up vote 3 down vote accepted

The short answer would be "don't do more http requests than needed".

The longer answer is that there is no such thing as a "standard" http request. You will need to measure the impact yourself with a defined set of requests/responses. Besides battery drainage you also need consider the justification for putting a heavy load on the users bandwidth. Some users are charged a lot of money for data transfer over e.g. 3G.

A lot of things can influence the metrics, including length of response, latency, bundling of connections, signal strength of carrier network, etc, etc, etc....

link|improve this answer
feedback

There is no way to give a hard number for this as the result will vary depending on numerous conditions including the network conditions, physical conditions of the phone and battery, what apps are running in the background, etc.

The only way to get any kind of idea of this is to write an app that makes continuous HTTP request and measure the battery drain. Even that won't give you a real answer because of all of the variables.

The true answer, of course, if that if an http request is absolutely needed, then it is justified.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.