Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I completely disable caching in Cakephp?

So I opened the cache floodgates in my Cakephp app and now I want to close them...

I've done pretty much everything I can: delete all files in the tmp folder (but not the folders), turned 'Cache.disable' on in the core.php file in my app, have tried clearing the cache from within some controllers with clearCache() and Cache::clear() (but I suspect this doesn't work because it's not loading the controller -- due to caching).

I've pretty much effectively halted my development process just because caching won't turn off. Anyone have some ideas that I could try? I'm starting to think it may be within the browser or maybe my hosting service, but it's probably just Cakephp messing with me.

like image 950
James Lamiell Avatar asked Apr 19 '10 12:04

James Lamiell


People also ask

How do I stop caching?

Here's how... When you're in Google Chrome, click on View, then select Developer, then Developer Tools. Alternatively, you can right click on a page in Chrome, then click Inspect. Click on the Network tab, then check the box to Disable cache.

How do I clear my cakephp cache?

Clearing the Cache If you need to manually clear the cache, you can do so by calling Cache::clear(). This will clear all cached data, excluding cached view files. If you need to clear the cached view files, use clearCache() .

How do I stop caching in react?

Function disableCache() disables caching in localStorage and sessionStorage. When component retrieves new icons from API, icon data is stored in browser storage. Cache makes rendering faster because component can retrieve icons from cache instead of sending API query. Unlike API queries, cache is instant.


4 Answers

To rule out browser caching as the root cause, you might try adding the following lines:

header('Cache-Control: no-store, private, no-cache, must-revalidate');                  // HTTP/1.1
header('Cache-Control: pre-check=0, post-check=0, max-age=0, max-stale = 0', false);    // HTTP/1.1
header('Pragma: public');
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');                                       // Date in the past  
header('Expires: 0', false); 
header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');
header('Pragma: no-cache');

The combination of all these cache-busting HTTP headers has, in my experience, worked in all browsers, and has got around some very aggressive caching proxies as well.

like image 105
Daniel Wright Avatar answered Sep 18 '22 11:09

Daniel Wright


You could look your controller code for some element caching and set them to false. This applies to app_controller.php or Controller/AppController.php depending on version of Cake you use.

Controller::cacheAction = false

echo $this->element('latest_comments', array(), array('cache' => false));

You could try adding Controller::disableCache(); in your controller action.

like image 24
icebreaker Avatar answered Sep 19 '22 11:09

icebreaker


Kind of a long shot (plus this thread is old, but oh well), but I had a similar problem: I couldn't get IE to quit caching ajax requests (using jQuery). After much heartache and headache a simple:

$.ajaxSetup({cache:false});

did the trick. Gotta love IE...

like image 25
mgalgs Avatar answered Sep 19 '22 11:09

mgalgs


I had a problem once with the model getting cached and no longer reflected the schema of the table.

I had to update my /config/core.php and set "debug:2" This disables the caching of my models and fixed my problems.

like image 39
Steven Smethurst Avatar answered Sep 20 '22 11:09

Steven Smethurst