top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between HTML 5 Application Cache and regular HTML Browser Cache?

0 votes
500 views
What is the difference between HTML 5 Application Cache and regular HTML Browser Cache?
posted Sep 11, 2015 by Sathaybama

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

One of the key features of HTML 5 is an "Application Cache" that enables us to make an offline version of a web application. It allows fetching of a few or all of website contents such as HTML files, CSS, images, JavaScript etcetera locally. This feature speeds up the site performance. This is done using a manifest file defined as follows:

<!doctype html>
<html manifest="example.appcache">
.....
</html>

As compared with traditional browser caching, it's not compulsory for the user to visit website contents to be cached.​

answer Sep 11, 2015 by Shivaranjini
...