Cache all front page stats in APC if available

Use the APC cache to store all of the counts and the recently updated
package list in a cache, which cuts down on the number of database queries
needed. If the data isn't perfectly up to date we will survive.

This version of the patch will also cache the relevant counts for individual
logged-in users and is more careful about checking whether the value
actually exists in the cache by using the status reference to apc_fetch().

Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
Dan McGee 2009-01-04 13:43:58 -06:00 committed by Loui Chang
parent 92643bb827
commit 5d6f465170
2 changed files with 38 additions and 20 deletions

View file

@ -2,10 +2,39 @@
include_once('aur.inc'); include_once('aur.inc');
# Check if APC extension is loaded
if (!defined('EXTENSION_LOADED_APC'))
define('EXTENSION_LOADED_APC', extension_loaded('apc'));
$apc_prefix = 'aur:';
# run a simple db query, retrieving and/or caching the value if APC
# is available for use
#
function db_cache_value($dbq, $dbh, $key)
{
if(!(EXTENSION_LOADED_APC && ($ret = apc_fetch($key)))) {
$result = db_query($dbq, $dbh);
$row = mysql_fetch_row($result);
$ret = $row[0];
# set the TTL here in seconds: 300 seconds = 5 minutes
apc_store($key, $ret, 300);
}
return $ret;
}
function updates_table($dbh) function updates_table($dbh)
{ {
$q = 'SELECT * FROM Packages WHERE DummyPkg != 1 ORDER BY GREATEST(SubmittedTS,ModifiedTS) DESC LIMIT 0 , 10'; $key = $apc_prefix . 'recent_updates';
$newest_packages = db_query($q, $dbh); if(!(EXTENSION_LOADED_APC && ($newest_packages = apc_fetch($key)))) {
$q = 'SELECT * FROM Packages WHERE DummyPkg != 1 ORDER BY GREATEST(SubmittedTS,ModifiedTS) DESC LIMIT 0 , 10';
$result = db_query($q, $dbh);
$newest_packages = new ArrayObject();
while ($row = mysql_fetch_assoc($result)) {
$newest_packages->append($row);
}
apc_store($key, $newest_packages, 300);
}
include('stats/updates_table.php'); include('stats/updates_table.php');
} }
@ -42,30 +71,20 @@ function general_stats_table($dbh)
{ {
# AUR statistics # AUR statistics
$q = "SELECT count(*) FROM Packages,PackageLocations WHERE Packages.LocationID = PackageLocations.ID AND PackageLocations.Location = 'unsupported'"; $q = "SELECT count(*) FROM Packages,PackageLocations WHERE Packages.LocationID = PackageLocations.ID AND PackageLocations.Location = 'unsupported'";
$result = db_query($q, $dbh); $unsupported_count = db_cache_value($q, $dbh, $apc_prefix . 'unsupported_count');
$row = mysql_fetch_row($result);
$unsupported_count = $row[0];
$q = "SELECT count(*) FROM Packages,PackageLocations WHERE Packages.LocationID = PackageLocations.ID AND PackageLocations.Location = 'community'"; $q = "SELECT count(*) FROM Packages,PackageLocations WHERE Packages.LocationID = PackageLocations.ID AND PackageLocations.Location = 'community'";
$result = db_query($q, $dbh); $community_count = db_cache_value($q, $dbh, $apc_prefix . 'community_count');
$row = mysql_fetch_row($result);
$community_count = $row[0];
$q = "SELECT count(*) from Users"; $q = "SELECT count(*) from Users";
$result = db_query($q, $dbh); $user_count = db_cache_value($q, $dbh, $apc_prefix . 'user_count');
$row = mysql_fetch_row($result);
$user_count = $row[0];
$q = "SELECT count(*) from Users,AccountTypes WHERE Users.AccountTypeID = AccountTypes.ID AND AccountTypes.AccountType = 'Trusted User'"; $q = "SELECT count(*) from Users,AccountTypes WHERE Users.AccountTypeID = AccountTypes.ID AND AccountTypes.AccountType = 'Trusted User'";
$result = db_query($q, $dbh); $tu_count = db_cache_value($q, $dbh, $apc_prefix . 'tu_count');
$row = mysql_fetch_row($result);
$tu_count = $row[0];
$targstamp = intval(strtotime("-7 days")); $targstamp = intval(strtotime("-7 days"));
$q = "SELECT count(*) from Packages WHERE (Packages.SubmittedTS >= $targstamp OR Packages.ModifiedTS >= $targstamp)"; $q = "SELECT count(*) from Packages WHERE (Packages.SubmittedTS >= $targstamp OR Packages.ModifiedTS >= $targstamp)";
$result = db_query($q, $dbh); $update_count = db_cache_value($q, $dbh, $apc_prefix . 'update_count');
$row = mysql_fetch_row($result);
$update_count = $row[0];
include('stats/general_stats_table.php'); include('stats/general_stats_table.php');
} }

View file

@ -6,8 +6,7 @@
</th> </th>
</tr> </tr>
<?php while ($row = mysql_fetch_assoc($newest_packages)): ?> <?php foreach ($newest_packages->getIterator() as $row): ?>
<tr> <tr>
<td class="boxSoft"> <td class="boxSoft">
<span class="f4"><span class="blue"> <span class="f4"><span class="blue">
@ -34,7 +33,7 @@ endif;
</td> </td>
</tr> </tr>
<?php endwhile; ?> <?php endforeach; ?>
</table> </table>