function boost_crawler_total_count in Boost 6
Get count of boost_crawler table.
2 calls to boost_crawler_total_count()
- boost_admin_boost_performance_page in ./
boost.admin.inc - Form builder; Displays Boost's configuration page.
- boost_crawler_run in ./
boost.module - The brains of the crawler.
File
- ./
boost.module, line 6299 - Provides static file caching for Drupal text output. Pages, Feeds, ect...
Code
function boost_crawler_total_count() {
return db_result(db_query("SELECT COUNT(*) FROM {boost_crawler} GROUP BY hash"));
}