mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-17 14:18:35 +01:00
15 lines
203 B
Plaintext
15 lines
203 B
Plaintext
|
#!/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();
|