Cotonti / Cotonti

Fast, reliable and flexible PHP CMF/CMS
https://www.cotonti.com
BSD 3-Clause "New" or "Revised" License
92 stars 51 forks source link

Functions in admin.cache.disk.php #1741

Closed seditio closed 7 months ago

seditio commented 8 months ago

Functions in admin.cache.disk.php shall be moved to an external functions-file that you can include via cot_incfile('core', 'smth');

Alex300 commented 7 months ago

[RU] Посмотри реализацию \Cache::clear() - system/cache.php:L1504 Можно сбрасывать как отдельные виды кеша, так и весь.

В простейшем случае

if (Cot::$cache) {
    Cot::$cache->clear();
}

Полностью зачистить дисковый кеш, как в админке:

Cot::$cache->disk->clear(null, null);
seditio commented 7 months ago

Все ок