function apachesolr_stats_cron in Apache Solr Statistics 7
Same name and namespace in other branches
- 6.3 apachesolr_stats.module \apachesolr_stats_cron()
- 6 apachesolr_stats.module \apachesolr_stats_cron()
Implements hook_cron().
Remove expired log messages.
File
- ./
apachesolr_stats.module, line 469 - Keeps and reports statistics about Apache Solr usage and performance.
Code
function apachesolr_stats_cron() {
db_delete('apachesolr_stats')
->condition('timestamp', REQUEST_TIME - variable_get('apachesolr_stats_flush_log_timer', 259200), '<')
->execute();
}