Sarathlal N

Refresh the invalidated cache using cron job - Magento 1

In Magento, when we make changes in products, static blocks etc, to shows the changes on frontend, we have to refresh the invalidated cache from System > Cache Management.

This is a default functionality in Magento. But some new admin didn’t care about cache management and argue that changes are not happen in front end.

Below you can find a PHP script that will refresh the invalidate cache types only.

<?php
ini_set('max_execution_time', 18000);
require_once 'app/Mage.php';
$app = Mage::app('admin');
umask(0);
Mage::setIsDeveloperMode(true);

//Cache Refresh Start
$invalidatedTypes = Mage::app()->getCacheInstance()->getInvalidatedTypes();
foreach ($invalidatedTypes as $type) {
	Mage::app()->getCacheInstance()->cleanType($type->getId());
	Mage::log('Cache Type '.$type->getId()." Is Refresh.",null,'Refresh_Cache.log');
}
//Cache Refresh End

?>

If you want to refresh invalidate cache at specific intervals,

  1. Create a PHP file in your server.
  2. Copy above code snippet in that file.
  3. Create a cron job that run the new PHP file at a specific interval.

Here is my new cron job in a cPanel server.

Refresh invalidate cache using cron job

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.