I am using server client architecture in my application.
I am using NSURLConnection class,now suppose i am sending multiple requests in for loop and using async connection with delegate methods.So my question is after I got response from server do I need to close connection manually and make that object null.
I am asking because on server there is constraint on maximum connections to be made and if that connection limit exceeds I have to restart server and I can not change maximum connection limit.