With work having recently stopped on ASIHTTPRequest, it seems like attention is shifting to AFNetworking.
However, I've not yet found a good comparison of the features of the two libraries, so I don't know what I might lose if/when I switch over.
Major differences I've spotted so far are:
- AFNetworking has a much smaller code size (which is good)
- AFNetworking is being rapidly improved (so it may not yet be mature, may not have a stable API yet?)
- Both seem to have caching, though I've seen hints that because AFNetworking uses NSURLConnection it won't cache objects over 50K
- ASIHTTPRequest has very good support for manual & automatic (PAC) http proxies; I can't find any information on what level of support AFNetworking has for proxies
- AFNetworking requires iOS 4+, whereas ASIHTTPRequest works right back to iOS 2 (not really an issue for me, but it is an issue for some people)
- AFNetworking doesn't (yet) have a built in persistent cache, but there's a persistent cache which has a pending pull request: https://github.com/gowalla/AFNetworking/pull/25
Has anyone seen any good comparisons of the two libraries or any documented experiences of switching from one to the other?
ASIFallbackToCacheIfLoadFailsCachePolicyis very good. And, I think AFNetworking has no persistent cache support. This is a no-go for me. – iwat Sep 28 '11 at 9:28afnetworking. – iwat Sep 28 '11 at 9:34NSURLCache. If you're looking for disk cache, I'd heartily suggest Peter Steinberger's SDURLCache fork. – mattt Oct 25 '11 at 13:56