Drupal 6's cache can be set to disabled, normal or aggressive. I cannot find these options for my Drupal 7 installation. There is only a button that flushes all the cache but it has to be clicked for every change I made to a module or a template. By change I mean adding some HTML tags to a module or a template.

Thanks to mirzu's response, I already installed the devel module but it doesn't work either. The only way I get so see my changes is by disabling and enabling the module.

The hello.module looks like:

<?php
function annotate_menu(){
  $items = array();
  $items['hello'] = array(
    'title'            => t('Hello world'),
    'page callback'    => 'hello_output',
    'access arguments' => array('access content'),
  );
  return $items;
}

function hello_output() {
  header('Content-type: text/plain; charset=UTF-8');
  header('Content-Disposition: inline');
  return 'annotate';
}

And the template page-hello.tpl.php:

<?php
print $content;

I access the page through: http://localhost/test/hello

link|improve this question

1  
Define "change", what do you want to update exactly?. Some things are cached but generally, you should be able to change the inside of a function for example and it should update. Are you testing as anonymous user and page caching is enabled maybe? Might also help if you post some code.. – Berdir Feb 3 '11 at 22:49
I added the code of my module and of the template. – jdecuyper Feb 3 '11 at 23:33
feedback

3 Answers

up vote 5 down vote accepted

Completely disable the cache and use the devel module and check the box that reads "rebuild the cache registry on each page load."

link|improve this answer
I did this but it still doesn't refresh anything. Maybe I should completely disable the cache? – jdecuyper Feb 3 '11 at 23:34
Thanks, in the end, I had to switch to Drupal 6 (for other reasons) which allows you to disable the cache functionality (inside the performance section). – jdecuyper Feb 11 '11 at 17:38
why drupal doesn´t have a built it option to disable the cache? – jaime May 1 at 1:21
feedback

There are many different levels of caching involved.

  • The menu system is not actually a cache. If you change anything in hook_menu(), you need to rebuild it. devel.module provides a handy link for that in the development block.

  • Additionally, Drupal also caches hook implementation and many other things, which you can clear with another link in the development block or if you have drush installed, with "drush cc all". There is also a way to disable it completely but that could make your site quite slow: http://drupal.org/node/797346

link|improve this answer
+1, thanks for pointing out the different kinds of cache Drupal manages. – jdecuyper Feb 11 '11 at 17:38
feedback

maybe answer above was for an older version of the Devel module? the latest rel (7.x-1.2) does not have the option to "rebuild the cache registry on each page load".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.