function apachesolr_stats_cron in Apache Solr Statistics 6.3
Same name and namespace in other branches
- 6 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 467 - 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));
}