I'm checking for HTTP availability in Android. I'm sending an HTTP GET and using URL http://www.google.com. This is my preferred method for actually sending the request. The response is taking much longer than I would like.. sometimes as long as 5 seconds. I would like it to be under 0.5 seconds.
All the questions I've found on here so far explain how to send HTTP GET requests, or how to check for network connectivity on the actual device. I know how to do that.. I am just looking for a website that would basically load extremely fast.
I'm also asking on here because all of my Google search results are taking me to website speed testing pages like speedtest.net...
Is there a website / URL that I could send an HTTP GET request that would send me a response extremely fast??
You should do a HTTP
HEAD
request instead of aGET
, that will almost always be faster given the server supports it.I can confirm that
http://www.google.com
does respond to the HEAD request, so I would consider that ideal.