Stop firebug from re-requesting html source

I am working with a page that takes about 10-15 seconds to load because it is running a huge SQL query and it seems like firebug is re-querying the source every time I try to use it. Does anyone else come across this? Is there a way to turn this off?

0


a source to share


1 answer


Is your server-side code sending HTTP cache headers? If not, you can try adding them. If this is the case and you are still seeing this issue, you can try installing a web cache proxy on your development machine and configure firefox to connect through it.



If you cannot change the server side code to add cache control headers, you can write a proxy that forwards requests to your server and adds headers to the responses it returns.

+1


a source







All Articles