function performance_log_summary_apc in Performance Logging and Monitoring 6
Same name and namespace in other branches
- 5 performance.module \performance_log_summary_apc()
- 7 performance.module \performance_log_summary_apc()
Helper function to store summary data in APC.
See also
File
- ./
performance.module, line 501 - Logs detailed and/or summary page generation time and memory consumption for page requests. Copyright Khalid Baheyeldin 2008 of http://2bits.com
Code
function performance_log_summary_apc($params = array()) {
$key = PERFORMANCE_KEY . $params['path'];
$result = performance_build_summary_data(apc_fetch($key), $params);
apc_store($key, $result['data']);
}