function boost_average_time in Boost 6
Return average page generation time.
2 calls to boost_average_time()
- boost.module in ./
boost.module - Provides static file caching for Drupal text output. Pages, Feeds, ect...
- boost_admin_boost_performance_page in ./
boost.admin.inc - Form builder; Displays Boost's configuration page.
File
- ./
boost.module, line 6344 - Provides static file caching for Drupal text output. Pages, Feeds, ect...
Code
function boost_average_time() {
return variable_get('boost_crawler_average_generation', 5000) / 1000 + 0.1;
}