Quote:
Originally Posted by tommytomtom
Hi!
I am currently working on a flashcard learning system for the Kindle Touch using the html5 capabilities of WAF. Actually everything is working, however, I would like to know how I can easily change the data (without the actual WAF-application) in "file__0.localstorage" and especially HOW TO INCREASE ITS FILE-SIZE-LIMIT!!!
It seems that the file cannot fill more than 254 entries or has a size limit of 31 kb.
Also I would like to know if there is a possibility of having several file__*.localstorage and how to choose between them.
Any help would be greatly appreciated!
Maybe these questions are general html5 ones and therefore should not be asked here, but in other browsers my program works and you will profit from my program in the near future!
|
If this is a design limitation (the program uses an 8-bit entry index), you need to modify the
system code that imposes this limit to allow a larger index.
Of course, that is assuming that it is not your own code imposing this "8-bit index" limitation...
Perhaps you can break your data up into "pages" of 254 entries, each using a different database, and swap in the page that you need (i.e. "demand paging" or "memory banking")?