Questions tagged [browser-cache]

Browser caches are an instance of the optimization mechanism known as a cache.

Browser caches are an instance of the optimization mechanism known as a cache.

The browser cache is nothing more than a place on your hard disk where the browser keeps things that it downloaded in case they're needed again.

For example, the first time you visit a web page, the browser will download some files like the logo image or icon images, so that it can be shown.

Since it's faster to get something to display from your hard disk than it is to get it from the internet, every time thereafter when you visit the same web page or any page on that domain, the browser will be searching for the required images and other files on its cache folder. Only if not found it goes to the internet to download them.

2884 questions
1
vote
0 answers

What is it about web browser cache design that causes performance to degrade when the cache grows

The nearly universal advice one gets when describing slow performance or erratic performance in a web browser is "Have you tried to clear the cache?" Since I've gotten this advice with every browser I've ever used, I assume their cache…
Tim
  • 8,669
  • 31
  • 105
  • 183
1
vote
1 answer

Caching Images generated by PHP script

Well, as given in the title, I want to cache the resource generated by my php script on the user's browser. I want to do so because I want to serve thumbnail images for some images from the server side dynamically. I have this .htaccess file with…
Nicholas Wild
  • 629
  • 1
  • 6
  • 17
1
vote
1 answer

IE caching issue, EVEN if correctly configured

I make a GET request to www.mysite.com and in the header I receive: Cache-Control no-cache, no-store, must-revalidate Expires Thu, 01 Jan 1970 00:00:00 GMT Pragma no-cache Otherwise, I receive notification that some visitors do not see my site…
Ermal
  • 441
  • 5
  • 19
1
vote
0 answers

GWT GIN to bind many ClientBundle with ImageResource in one picture for fast loading application

I am using GWT in my application. For caching pictures i use ClientBundle with ImageResource. I have many ClientBundles like this: public interface MenuBundle extends ClientBundle { @Source(background.png) ImageResource background(); …
B.ARS
  • 11
  • 1
1
vote
1 answer

codeigniter multistage forms using POST and making the backbutton work

I have codeigniter forms which use POST to go from one page to the next. Each stage uses user submission data. I read in: https://stackoverflow.com/a/13559805/1021360 That I need to use a get-post-get method (GPG) in order to allow the back-button…
1
vote
1 answer

HTML5 Application Cache only for dependencies

I want to cache only a few files like JavaScript and CSS, font files and image sprites. Is it better to add a manifest file for the files or should I let the browser do the cache? If it's better with manifest, can I still leave the pages…
Adrian Florescu
  • 4,454
  • 8
  • 50
  • 74
1
vote
1 answer

Joining concurrent/identical HTTP GET requests?

Do browsers join concurrent identical HTTP GET requests? At least, for static or cache-able content? That is, if something like this happens: | AJAX/HTTP-GET(resourceX) | [start download]------------------------------------------->[finish…
ManRow
  • 1,563
  • 4
  • 21
  • 40
1
vote
2 answers

How to save user name and password in Login screen Open erp

I used google chrome, and when I login to open erp there is no option to save the password, the username is restore but I want to keep the password automatically fill in the field, does anybody know how to do it? I used mozila and there is option to…
1
vote
0 answers

Why is my htaccess rule still producing gtmetrix, yslow expire headers errors?

I have a rule set up in my .htaccess on a WordPress site. It looks like this: # manual caching - force use of browser cache FileETag MTime Size ExpiresActive…
Jason Weber
  • 5,653
  • 6
  • 40
  • 73
1
vote
1 answer

Working with HTTP cache in Laravel, static files path generation

I'm planning to use Laravel framework in my next project. By now i get stuck in organizing links to static content in my project (images, scripts etc.) For example, i have this cache option (do cache all static files, nginx): location ~*…
Stanislav
  • 2,683
  • 2
  • 18
  • 14
1
vote
1 answer

How to trigger js each time postback to asp.net page instead of only first time?

I have a js function that will be executed automatically page initialized. This js will be called and executed perfectly when first open the page, but when I postback (click the link on asp.net page) page, it will not be called and the function…
JerryCai
  • 1,663
  • 4
  • 21
  • 36
1
vote
0 answers

Preventing JSP from caching

<% response.setHeader("Cache-Control","no-cache"); response.setHeader("Pragma","no-cache"); response.setDateHeader ("Expires", -1); %> <%@ page language="java" contentType="text/html; charset=ISO-8859-1" …
mkazma
  • 572
  • 3
  • 11
  • 29
1
vote
4 answers

Is website caching still relevant today?

In the paper "Rules of Thumb in Data Engineering" from the year 2000 they suggest the rule: "Cache web pages if there is any chance they will be re-referenced within their lifetime." Does this still apply today? Bandwidth is cheap and fast and…
Puckl
  • 731
  • 5
  • 19
1
vote
0 answers

Clear "Temporary Internet Files" from a server

Basically I use http://support.microsoft.com/kb/326201 for clearing the cache. But in a article http://msdn.microsoft.com/en-us/library/windows/desktop/aa383990(v=vs.85).aspx it is mentioned that the above KB cannot be used from the server. They…
Karthikeyan
  • 136
  • 7
1
vote
0 answers

css files not getting cached

We are using IBM HTTP server as our web server. Whenever a request is sent to homepage, browser is caching all static files like js or images except CSS. Why is it caching JS files which are also static but not CSS? Below are the request and…
Sheetu
  • 85
  • 1
  • 7
1 2 3
99
100