What is the best practices for reusing NSURLSessions
? From what I can tell, it seems that as long as the configuration (timeouts, caching policies, etc.) does not need to change, there is no need to create a new one (since you can spawn new tasks from it).
So can a single NSURLSession
be reused for an entire app? Per domain/endpoint? Per request?