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 8586311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:16:50+00:00 2026-06-11T22:16:50+00:00

Just a simple question: Does invalidated cache mean that caching is not running?

  • 0

Just a simple question:

Does invalidated cache mean that caching is not running?

  • 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-06-11T22:16:51+00:00Added an answer on June 11, 2026 at 10:16 pm

    Nope, just means that it needs to be refreshed.

    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.

    You can set this up to automatically refresh if you like.

    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

Simple question: Does Typeface.createFromAsset() cache? Or should I just keep a reference around in
I have a simple question that I assume does not have a simple solution.
Just have a simple question. Does CR11 R2 has CONFIDENCE function from Excel? http://support.microsoft.com/kb/828124
Simple question, simple code. This works: $x = &$_SESSION['foo']; This does not: $x =
Just a simple question, but does the order of your index matter when it
This is a simple question. I want to create an inline calendar that does
Just a simple question: I have read that a class should be made static
Should be a simple question, I'm just not familiar with PHP syntax and I
Sorry, this is a very simple question. What does this merge marker mean in
Simple question that I'm asking just as much for myself as for anyone who

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.