How to clear the cache in Opera 12?

3
So, I'm developing with a focus on Opera 12, it has a very interesting debugger, similar to Chrome, but one thing that annoys me a lot is that the refresh does not clear the browser cache, often close the flap and open a new one does not clean too.

Close the browser and open again, sometimes clean, but what is more accurate is to close it delete the cache folder of it, then open again. Just deleting the folder and updating does not work, it creates a new cache equal to the page that was loaded before.

Does anyone know how to disable the cache of scripts loaded in Opera 12?

    
asked by anonymous 07.02.2014 / 02:35

3 answers

4

Press Ctrl + F12 and you will get a menu of Preferências , navigate to the Avançado tab, and in the left menu select Histórico you will see a Esvaziar Agora button click on it and you will have cleared your cache.

See in detail the image below:

Note that you have some Cache options, if you want to modify, in your case it is recommended to check the Esvaziar na saída box and select Nenhum in Cache de memória and Cache de disco .

Note: I think it can also help you, if you go in the left side menu at Armazenamento and there you will have a Combo named Usar cache de aplicativos put to Não .

    
07.02.2014 / 03:08
1

Try this on the head of your page to not cache:

<meta http-equiv="cache-control" content="no-store, no-cache, must-revalidate, post-check=0, pre-check=0"> 
<meta http-equiv="pragma" content="no-cache"> 
<meta http-equiv="expires" content ="-1">
    
07.02.2014 / 04:17
1

Try this javascript in the console (CTRL + SHIFT + J) to reload the page and redo the cache:

location.reload(true);
    
07.02.2014 / 04:32