rss-bridge/bin/cache-prune
2024-01-17 20:10:32 +01:00

14 lines
203 B
PHP
Executable file

#!/usr/bin/env php
<?php
/**
* Remove all expired items from the cache
*/
require __DIR__ . '/../lib/bootstrap.php';
$rssBridge = new RssBridge();
$cache = RssBridge::getCache();
$cache->prune();