Browse Source

Ignore current cache on command

imwald
Nuša Pukšič 3 months ago
parent
commit
d11acff3c8
  1. 8
      src/Command/CacheLatestArticlesCommand.php

8
src/Command/CacheLatestArticlesCommand.php

@ -48,7 +48,7 @@ class CacheLatestArticlesCommand extends Command
$key->convertToHex('npub1fls5au5fxj6qj0t36sage857cs4tgfpla0ll8prshlhstagejtkqc9s2yl'), // AGORA Marketplace - feed 𝚋𝚘𝚝 (Just annoying) $key->convertToHex('npub1fls5au5fxj6qj0t36sage857cs4tgfpla0ll8prshlhstagejtkqc9s2yl'), // AGORA Marketplace - feed 𝚋𝚘𝚝 (Just annoying)
]; ];
if (!$cacheItem->isHit()) { // if (!$cacheItem->isHit()) {
$boolQuery = new BoolQuery(); $boolQuery = new BoolQuery();
$boolQuery->addMustNot(new Terms('pubkey', $excludedPubkeys)); $boolQuery->addMustNot(new Terms('pubkey', $excludedPubkeys));
@ -70,9 +70,9 @@ class CacheLatestArticlesCommand extends Command
$cacheItem->expiresAfter(3600); // Cache for 1 hour $cacheItem->expiresAfter(3600); // Cache for 1 hour
$this->articlesCache->save($cacheItem); $this->articlesCache->save($cacheItem);
$output->writeln('<info>Cached ' . count($articles) . ' articles.</info>'); $output->writeln('<info>Cached ' . count($articles) . ' articles.</info>');
} else { // } else {
$output->writeln('<comment>Cache already exists for key: ' . $cacheKey . '</comment>'); // $output->writeln('<comment>Cache already exists for key: ' . $cacheKey . '</comment>');
} // }
return Command::SUCCESS; return Command::SUCCESS;
} }

Loading…
Cancel
Save