-2

Our web application contain a few video(s), It's offline by AppCache (HTML5), It need about 400MB content to be stored, How to increase AppCache size limit?

mirage
  • 1
  • You need to provide more details as in what all you have tried so far and where are you stuck? – Aditya Apr 02 '18 at 07:40
  • I always got an error message from console "Application Cache Error event: Resource fetch failed (2) http://localhost/media/transition.mp4" – mirage Apr 02 '18 at 07:58

1 Answers1

0

AppCache seems to be deprecated (see https://developer.mozilla.org/en-US/docs/Web/HTML/Using_the_application_cache). IndexedDB is the most appropriate solution to store large files/blobs and it's supported in the most used web browsers.

Jesus Duran
  • 333
  • 2
  • 14