You are here

function performance_cron_db_prune in Devel 5

1 call to performance_cron_db_prune()
performance_cron in performance/performance.module

File

performance/performance.module, line 452

Code

function performance_cron_db_prune($timestamp = 0) {

  // Remove rows which have not been accessed since a certain timestamp
  db_query("DELETE FROM {performance_summary} WHERE last_access <= %d", $timestamp);
}