diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-04 11:06:01 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-04 11:06:01 -0800 |
commit | 5a1cbdc6f1e32be7b8430924a1125422d8457584 (patch) | |
tree | 28147de9aef4dd9fcec909e2ca0a13cc7d204cff /lib/default.php | |
parent | 7a7e2162dd7eed59e60d9360d8692abc111d940c (diff) |
Add time-based cutoffs for public tag cloud, favorited lists to speed up those queries.
Defaulting to only looking at last 90 days of activity, can be adjusted up or down.
$config['tag']['cutoff'] = 86400 * 90;
$config['popular']['cutoff'] = 86400 * 90;
Per-user and per-group tag clouds do not use the cutoff (and it doesn't help with indexing on them).
Diffstat (limited to 'lib/default.php')
-rw-r--r-- | lib/default.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/default.php b/lib/default.php index 2bedc4bf0..485a08ba4 100644 --- a/lib/default.php +++ b/lib/default.php @@ -144,9 +144,11 @@ $default = 'invite' => array('enabled' => true), 'tag' => - array('dropoff' => 864000.0), + array('dropoff' => 864000.0, # controls weighting based on age + 'cutoff' => 86400 * 90), # only look at notices posted in last 90 days 'popular' => - array('dropoff' => 864000.0), + array('dropoff' => 864000.0, # controls weighting based on age + 'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days 'daemon' => array('piddir' => '/var/run', 'user' => false, |