[aur-general] How are AUR statistics computed?
https://aur.archlinux.org/ says 'Packages added in the past 7 days - 172', but I've got over 200 new AUR package notification through the rss feed since Oct 18th. What exactly is being counted? Unique package bases?
On Wed, 22 Oct 2014 19:01:15 +0200 Karol Blazewicz <karol.blazewicz@gmail.com> wrote:
https://aur.archlinux.org/ says 'Packages added in the past 7 days - 172', but I've got over 200 new AUR package notification through the rss feed since Oct 18th. What exactly is being counted? Unique package bases?
From https://projects.archlinux.org/aur.git/tree/web/lib/stats.inc.php $targstamp = intval(strtotime("-7 days")); $q = "SELECT COUNT(*) FROM PackageBases WHERE ModifiedTS >= $targstamp AND ModifiedTS = SubmittedTS"; $add_count = db_cache_value($q, 'add_count'); So yes, it's counting pkgbases.
On Wed, Oct 22, 2014 at 7:15 PM, Doug Newgard <scimmia@archlinux.info> wrote:
On Wed, 22 Oct 2014 19:01:15 +0200 Karol Blazewicz <karol.blazewicz@gmail.com> wrote:
https://aur.archlinux.org/ says 'Packages added in the past 7 days - 172', but I've got over 200 new AUR package notification through the rss feed since Oct 18th. What exactly is being counted? Unique package bases?
From https://projects.archlinux.org/aur.git/tree/web/lib/stats.inc.php
$targstamp = intval(strtotime("-7 days"));
$q = "SELECT COUNT(*) FROM PackageBases WHERE ModifiedTS >= $targstamp AND ModifiedTS = SubmittedTS"; $add_count = db_cache_value($q, 'add_count');
So yes, it's counting pkgbases.
OK, thanks. Not sure if any fix (rephrasing) is needed, nobody seems to care ;P
participants (2)
-
Doug Newgard
-
Karol Blazewicz