[cache_form side issue]
Just a word of warning: cache_form is not actually a cache table, even though it accidentally took on the use of the cache table. There is an RTBC issue in D7 to rename the cache_form table to form_state (which is what it's about). See http://drupal.org/node/512026.
cache_form should not be cleared as if it were a re-creatable cache.
-Randy
On Fri, 2010-09-17 at 17:49 +0300, blouhwtf wrote:I usually use clear_cache_all() function to clear specific cache I'm working all. Not using cache at all is a waste of time, especially regarding menus, that can grow in some projects.
I was wondering how you guys are dealing with cache/optimizations on your development machine, between drupal cache, panels cache, browser cache and other css/js compression settings etc.. I've found it difficult to deal with all of them.
So, when I work on forms, I put this:
cache_clear_all(NULL, 'cache_form');
Just after bootstrap in index.php.
Otherwise, 'drush cc all'.