Flush Cache Cron è un modulo per Drupal 7 per svuotare manualmente la cache e per impostare lo svuotamento della cache durante il cron, questo modulo svuota solamente la cache senza ricostruire il bootstrap di sistema. Il modulo svuota le tavole: cache cache_block cache_filter cache_form cache_menu cache_page cache_path cache_views cache_views_data Qui il codice: <?php function flush_cache_cron() { try { $core = array('cache', 'cache_block', 'cache_filter', 'cache_form', 'cache_menu', 'cache_page', 'cache_path', 'cache_views', 'cache_views_data'); foreach($core as $table) { cache_clear_all('*', $table, TRUE); } } catch (Exception $e) { return $e; } return NULL; } function flush_cache_cron_cron() { // Interval defaults to 10800s = 3h. $interval = flush_cache_cron_interval(); // Set...