X-Git-Url: https://git.cyclocoop.org/%28%28?a=blobdiff_plain;f=includes%2Flibs%2Fobjectcache%2FWANObjectCache.php;h=36250b07c40962e802fd1e3729e91a98751ef962;hb=8a6548ee452ef08cec6248fbf4e215be812088b2;hp=2d5468146599e1d6dc3b5f5d1c6495e8e14450b8;hpb=72c493a3e42fbb88c35bd34380bf778c7bb5f404;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/objectcache/WANObjectCache.php b/includes/libs/objectcache/WANObjectCache.php index 2d54681465..36250b07c4 100644 --- a/includes/libs/objectcache/WANObjectCache.php +++ b/includes/libs/objectcache/WANObjectCache.php @@ -128,9 +128,9 @@ class WANObjectCache { * Fetch the value of a key from cache * * If passed in, $curTTL is set to the remaining TTL (current time left): - * - a) INF; if the key exists and has no TTL - * - b) float (>=0); if the key exists and has a TTL - * - c) float (<0); if the key is tombstoned or expired by $checkKeys + * - a) INF; if the key exists, has no TTL, and is not expired by $checkKeys + * - b) float (>=0); if the key exists, has a TTL, and is not expired by $checkKeys + * - c) float (<0); if the key is tombstoned or existing but expired by $checkKeys * - d) null; if the key does not exist and is not tombstoned * * If a key is tombstoned, $curTTL will reflect the time since delete().