Use negative caching
This commit is contained in:
parent
1aacff4ce1
commit
f0499e7269
|
@ -1207,13 +1207,19 @@ class Processor
|
||||||
$object = DI::cache()->get($cachekey);
|
$object = DI::cache()->get($cachekey);
|
||||||
|
|
||||||
if (!is_null($object)) {
|
if (!is_null($object)) {
|
||||||
Logger::debug('Fetch from cache', ['url' => $url, 'uid' => $uid]);
|
if (!empty($object)) {
|
||||||
|
Logger::debug('Fetch from cache', ['url' => $url, 'uid' => $uid]);
|
||||||
|
} else {
|
||||||
|
Logger::debug('Fetch from negative cache', ['url' => $url, 'uid' => $uid]);
|
||||||
|
}
|
||||||
return $object;
|
return $object;
|
||||||
}
|
}
|
||||||
|
|
||||||
$object = ActivityPub::fetchContent($url, $uid);
|
$object = ActivityPub::fetchContent($url, $uid);
|
||||||
if (empty($object)) {
|
if (empty($object)) {
|
||||||
Logger::notice('Activity was not fetchable, aborting.', ['url' => $url, 'uid' => $uid]);
|
Logger::notice('Activity was not fetchable, aborting.', ['url' => $url, 'uid' => $uid]);
|
||||||
|
// We perform negative caching.
|
||||||
|
DI::cache()->set($cachekey, [], Duration::FIVE_MINUTES);
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue