Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6925257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:45:59+00:00 2026-05-27T10:45:59+00:00

In the Magento admin under Cache Management, what does it mean when it shows

  • 0

In the Magento admin under Cache Management, what does it mean when it shows a cache as invalidated? How does Magento know a cache is invalidated? In particular, I’m wondering about HTML Block cache. What conditions would cause this cache to show up as invalidated?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T10:46:00+00:00Added an answer on May 27, 2026 at 10:46 am

    In Magento, whenever you make changes to products, static blocks, etc, it recognizes that the data in the database is no longer the same as what it has in the cache. Unfortunately, Magento doesn’t realize what cache data is different, just that something is different.

    You will need to go into System > Cache Management and refresh the invalidated cache types.

    EDIT:

    Create a module (or use an existing module) that you can use to set up a cron job for refreshing the cache. Create a file: {namespace}/{modulename}/Model/Observer.php

    Inside that file:

    <?php
    class <namespace>_<modulename>_Model_Observer {
    
      public function refreshCache() {
        try {
          $allTypes = Mage::app()->useCache();
          foreach($allTypes as $type => $blah) {
            Mage::app()->getCacheInstance()->cleanType($type);
          }
        } catch (Exception $e) {
          // do something
          error_log($e->getMessage());
        }
      }
    
    }
    

    In your module’s etc/config.xml:

    <config>
      ...
      <crontab>
        <jobs>
          <{modulename}_refresh_cache>
            <schedule><cron_expr>* * * * *</cron_expr></schedule>
            <run><model>{modulename}/observer::refreshCache</model></run>
          </{modulename}_refresh_cache>
        </jobs>
      </crontab>
      ...
    </config>
    

    Now as long as cron is configured correctly on your server, the cache will update automatically, as often as cron runs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am importing a products csv from Magento admin. I want to know which
Just wondering if, in the config/design section of the Magento admin - where you
@ /index.php/admin/system_config/edit/section/design/ Does adding to Magento's Miscellaneous scripts field affect every page in the
I have a custom module I made for Magento. From the admin, there is
I have created a module in Magento which takes certain views from customers about
I am unable to login into magento admin. In magento, (in newest release..) it
I saw this toolbar in the magento admin store. After the page is scrolled
My question is, can the Magento admin pages be themed (changing of Magento logo,
The way I am using Magento is like this: We are using Magento admin/dashboard
My problem is that, i cant log into the Admin area of Magento with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.