function apachesolr_stats_cron in Apache Solr Statistics 6
Same name and namespace in other branches
- 6.3 apachesolr_stats.module \apachesolr_stats_cron()
 - 7 apachesolr_stats.module \apachesolr_stats_cron()
 
Implementation of hook_cron().
Remove expired log messages.
File
- ./
apachesolr_stats.module, line 556  - Keeps and reports statistics about Apache Solr usage and performance.
 
Code
function apachesolr_stats_cron() {
  db_query('DELETE FROM {apachesolr_stats} WHERE timestamp < %d', time() - variable_get('apachesolr_stats_flush_log_timer', 259200));
}