You are here

function performance_cron in Devel 5

File

performance/performance.module, line 444

Code

function performance_cron() {

  // One day ago ...
  $timestamp = time() - 24 * 60 * 60;
  performance_cron_db_prune($timestamp);
  performance_cron_apc_prune($timestamp);
}