I'm using ASIHttpRequests
and an ASINetworkQueue
in an iphone app to retrieve some 100k XML files and a lot of thumbnails from a web service. I'd like to cache the requests in the style of NSURLCache
. ASI doesn't seem to support caching as is, and I looked at the code and it drops to C to create the requests, so inserting the NSURLCache
layer seemed tricky.
What's the best way to implement this?