1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 12:00:55 +01:00

Fix an issue where an excessively long TTL was computed for "not attending anything" event caches

Summary:
Fixes T11894. Currently, if you aren't attending any events for a while, we can cache that you are free for the next 72 hours, even if you have an event in a few hours.

Instead, only cache "user is free" until the next event, if one exists.

Test Plan: Dumped cache TTLs, saw 52 minutes instead of ~4300 minutes with a near-upcoming event.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11894

Differential Revision: https://secure.phabricator.com/D16937
This commit is contained in:
epriestley 2016-11-23 15:08:15 -08:00
parent a1025ca52e
commit eac49e421a

View file

@ -498,7 +498,16 @@ final class PhabricatorPeopleQuery
'eventPHID' => null, 'eventPHID' => null,
'availability' => null, 'availability' => null,
); );
// Cache that the user is available until the next event they are
// invited to starts.
$availability_ttl = $max_range; $availability_ttl = $max_range;
foreach ($events as $event) {
$from = $event->getStartDateTimeEpochForCache();
if ($from > $cursor) {
$availability_ttl = min($from, $availability_ttl);
}
}
} }
// Never TTL the cache to longer than the maximum range we examined. // Never TTL the cache to longer than the maximum range we examined.