It's becoming evident in my testing that there's a 5mb size limit on Mobile Safari's implementation of HTML5's application cache.

Does anyone know how to circumvent or raise this? Is there some unexposed meta tag that I should know about? I have to cache some video content for an offline app and 5mb is not going to be enough.

link|improve this question
feedback

6 Answers

Also contacted apple about this.

Read my blogpost about this here: http://techblog.viewbook.com/2011/02/mobile-safari-offline-application-cache-limit/

And my StackOverflow post here: Max size iPad / iPhone Offline Application Cache

link|improve this answer
feedback

What else is on the page?

These guys keep their pages under the limit by either splitting up the pages or replacing some of the cached images with links:
http://www.mobilenoter.com/blog/post/2010/04/06/Removing-size-limit-of-a-page.aspx

link|improve this answer
I suppose that can be applied to video as well? Cut up the video into 5MB chunks. If there is no need for video seeking, I think the loader is quite trivial to implement. – syockit Dec 4 '10 at 4:32
feedback

This won't apply to the particular offline-video use case, but you can create Web SQL databases larger than the default 5MB in iOS by simply requesting a larger DB in the openDatabase call. For some kinds of storage, SQLite can be an acceptable solution.

link|improve this answer
feedback

Not sure why every forgets about the good 'ol Web apps (remember these guys? they were around before native apps!), but they're already "offline ready," which means that you don't need to load up your application cache with every component of your app.

To the best of my knowledge, there is no limit to the size of web apps.

http://www.apple.com/webapps/

link|improve this answer
It's actually a web app that I'm building -- one to show movies (html5 video tag) when user is offline for presentations etc. I can confirm that the cache size limit applies to web apps as well. – JFH Jul 14 '10 at 16:45
feedback

I tried to write a simple test with this manifest:

CACHE MANIFEST
# 2010-06-20:v4

http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
http://peach.blender.org/wp-content/uploads/big_big_buck_bunny.jpg
http://apod.nasa.gov/apod/image/9712/orionfull_jcc_big.jpg
http://www.thelivingmoon.com/43ancients/04images/Titan/titan5km_huygens_big.jpg
http://upload.yeuamnhac.com/musica/dan_lily/dancontent/rh108poster1big.jpg

This cache will need 11.4MB of storage.

When I open a page include that manifest file, it say something like that: "This website require to use up to 25MB of storage, do you want to increase local storage?".

I think I got what the way iOS do: - You only have 5MB for local storage (include HTML5 application cache) - If your web need more, Safari need user's agreement for some packages (up to 10MB, or 25MB, or more...)

Hope that useful for you.

link|improve this answer
feedback

Only thing I can think of is to mod more memory to the phone. Local storage on mobile is a laughable concept, they're not full-blown computers and most of them aren't even "smart".

(This is purely an opinion but I'm very much willing to take any and all the reputation hit for it.)


Late edit: A bit further clarification, consider iPhone: Its browser allows the user to open up to 8 tabs at any time. It's first models has 128MB of RAM and newer models have 256MB of RAM. Now, allowing 5 megabytes per tab and 8 tabs mean that just the cached content may take up to 40 megabytes of those precious bits which is already quite a lot since I really doubt that the browser itself, not to mention phone's OS and other stuff hanging in memory wouldn't take a significant part of the memory already.

On top of that as long as even a single old-generation iPhone exists, Apple has to support it on software - it wouldn't be good for the image of the company (not that it'd be that great at all anyway currently) if some of their everyday products would just stop working all the sudden.

In short, it's just not feasible to allow local storage to expand beyond a few megabytes because phones just aren't capable to do that. Wait a couple of years and then maybe...

link|improve this answer
1  
I did hear back from Apple on this also -- nutshell: "yes, there's a 5mb limit. We know. Don't try to work around it. You're welcome to submit a bug report if you'd like to see this addressed." – JFH Jun 9 '10 at 15:58
2  
This doesn't have anything to do with RAM on the phone, only permanent storage. The resources stored in the cache only need to be loaded into memory when the currently loaded page requests them. – austinfromboston Aug 4 '10 at 21:06
@austin: Bits do not magically transfer from permanent storage to RAM, bandwidth and both read and write speeds are really important too. This situation wouldn't be any different even if iPhones had a full terabyte of permanent storage space since there's only so much space in RAM to use and transferring from permanent storage to RAM is always relatively slow. – Esko Aug 5 '10 at 7:30
& @austin: Access speeds to the Gigs of storage on these iDevices is blazing fast. Limiting to 5MB is ridiculous and just hinders the growth of Web-Apps, we'd all be better if it were say 50MB and all in Flash memory. At the very least it should be able to grow on-demand. – ohadpr Jun 27 '11 at 3:15
I've been lately pushed to negatives in this answer which I'm not against but in any case, please do contribute: As far as I can see, this is still entirely valid. If you have a contradicting view, please please bring it up while downvoting, and if you're just an Apple fanboy, don't abuse the voting system. – Esko Jul 5 '11 at 20:06
show 2 more comments
feedback

protected by Will Nov 26 '10 at 18:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.