<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.28.3">
</HEAD>
<BODY>
On Fri, 2010-09-17 at 17:49 +0300, blouhwtf wrote:
<BLOCKQUOTE TYPE=CITE>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    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.
</BLOCKQUOTE>
<BR>
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.<BR>
<BR>
So, when I work on forms, I put this:<BR>
<BR>
cache_clear_all(NULL, 'cache_form');<BR>
<BR>
Just after bootstrap in index.php.<BR>
<BR>
Otherwise, 'drush cc all'.<BR>
<BR>
</BODY>
</HTML>