From: Roland Häder Date: Thu, 1 Apr 2010 18:40:15 +0000 (+0000) Subject: Proper cache hit counting fixed X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=be81324dfff59fa3aeac6844d10afe8c15286dff;hp=e45e218c4f629ec63f0788cab231bfc88b3fa46e Proper cache hit counting fixed --- diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index 2127a208e7..48db9bbc05 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -716,7 +716,10 @@ function isExtensionInstalledAndNewer ($ext_name, $version) { // Is an cache entry found? if (!isset($GLOBALS['ext_installed_newer'][$ext_name][$version])) { $GLOBALS['ext_installed_newer'][$ext_name][$version] = ((isExtensionInstalled($ext_name)) && (getExtensionVersion($ext_name) >= $version)); - } // END - if + } else { + // Cache hits should be incremented twice + incrementStatsEntry('cache_hits', 2); + } // Return it //* DEBUG: */ print __FUNCTION__.':'.$ext_name.'=>'.$version.':'.intval($GLOBALS['ext_installed_newer'][$ext_name][$version]).'
'; @@ -728,7 +731,10 @@ function isExtensionInstalledAndOlder ($ext_name, $version) { // Is an cache entry found? if (!isset($GLOBALS['ext_installed_older'][$ext_name][$version])) { $GLOBALS['ext_installed_older'][$ext_name][$version] = ((isExtensionInstalled($ext_name)) && (isExtensionOlder($ext_name, $version))); - } // END - if + } else { + // Cache hits should be incremented twice + incrementStatsEntry('cache_hits', 2); + } // Return it //* DEBUG: */ print __FUNCTION__.':'.$ext_name.'<'.$version.':'.intval($GLOBALS['ext_installed_older'][$ext_name][$version]).'
';