Re: Webview cache location

2012-04-15 Thread Mike Abdullah
WebKit uses multiple layers of caching. Not all of it on disk. A combination of clearing out the shared NSURLCache and relaunching your app should clear them all. On 13 Apr 2012, at 15:49, Koen van der Drift wrote: Unfortunately that link doesn't seem applicable to my situation. I'm just

Webview cache location

2012-04-13 Thread Koen van der Drift
I am using a webview in my app, and am wondering where the cache is stored? Is there a specific location for each app, or is it shared with the Safari cache? Thanks, - Koen. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post

Re: Webview cache location

2012-04-13 Thread Alex Zavatone
This might help: http://stackoverflow.com/questions/1348696/how-to-cache-content-in-uiwebview-for-faster-loading-later-on On Apr 13, 2012, at 10:15 AM, Koen van der Drift wrote: I am using a webview in my app, and am wondering where the cache is stored? Is there a specific location for each

Re: Webview cache location

2012-04-13 Thread Koen van der Drift
Thanks for the link. My app is OSX, so will see if it is applicable. - Koen. On Fri, Apr 13, 2012 at 10:19 AM, Alex Zavatone z...@mac.com wrote: This might help: http://stackoverflow.com/questions/1348696/how-to-cache-content-in-uiwebview-for-faster-loading-later-on On Apr 13, 2012, at

Re: Webview cache location

2012-04-13 Thread Koen van der Drift
Unfortunately that link doesn't seem applicable to my situation. I'm just trying to find the location on my HD, so I can empty it for debugging purposes. - Koen. On Fri, Apr 13, 2012 at 10:37 AM, Koen van der Drift koenvanderdr...@gmail.com wrote: Thanks for the link. My app is OSX, so will

Re: Webview cache location

2012-04-13 Thread Nick Zitzmann
On Apr 13, 2012, at 8:49 AM, Koen van der Drift wrote: Unfortunately that link doesn't seem applicable to my situation. I'm just trying to find the location on my HD, so I can empty it for debugging purposes. The cache database is stored at ~/Library/Caches/[your app bundle identifier

Re: Webview cache location

2012-04-13 Thread Gerriet M. Denkmann
On 14 Apr 2012, at 02:00, Nick Zitzmann n...@chronosnet.com wrote: The cache database is stored at ~/Library/Caches/[your app bundle identifier here]/Cache.db assuming it's not sandboxed. I just looked at ~/Library/Caches/[my app bundle identifier here]/ which contains

Re: Webview cache location

2012-04-13 Thread Nick Zitzmann
On Apr 13, 2012, at 6:01 PM, Gerriet M. Denkmann wrote: I just looked at ~/Library/Caches/[my app bundle identifier here]/ which contains com.apple.opencl/com.apple.ocl.64.data + com.apple.ocl.64.maps. These things exist even for apps not using Webview at all. So: what goes into this

Re: Webview cache location

2012-04-13 Thread Gerriet M. Denkmann
On 14 Apr 2012, at 08:08, Nick Zitzmann wrote: On Apr 13, 2012, at 6:01 PM, Gerriet M. Denkmann wrote: I just looked at ~/Library/Caches/[my app bundle identifier here]/ which contains com.apple.opencl/com.apple.ocl.64.data + com.apple.ocl.64.maps. These things exist even for apps