Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Can I hook into an event for remote cache invalidation?

Vote:
 

In a load-balanced environment, is it possible to hook into the cache invalidation?  When a page changes on Server A, it broadcasts across UDP 455 to tell Server B (and C, and D...) to invalidate cache for that page.

I'd like to hook this event.  We're doing significant output caching, and I'd like the other servers to clear some output cache items at the same they invalidate the page cache.

Is this possible?

#40636
Jun 14, 2010 18:18
Vote:
 

Yes indeed. Load balancing is done using the EPiServer Events System (there is a technote if you want to learn more).

You just need to find out the Guid of the event you're interested in (ok, not that easy) and then you're done. In your case you probably want to handle the CMS Page Cache Remove event 9484E34B-B419-4e59-8FD5-3277668A7FCE.

Add a reference to the EPiServer.Events assembly. This is part of CMS in CMS 5 and EPiServer Framework in CMS 6. Also add a reference to EPiServer.dll so you can use the constants from the CacheManager class.

In you code:

using EPiServer;

using EPiServer.Events.Clients;

Event removeFromCacheEvent = Event.Get(CacheManager.RemoveFromCacheEventId);

removeFromCacheEvent.Raised += new EventNotificationHandler(RemoveFromCacheEvent_Raised);

 

 private static void RemoveFromCacheEvent_Raised(object sender, EventNotificationEventArgs e)
        {
            // don't process events I've raised
            if (e.RaiserId != LocalCacheManagerRaiserId)
            {
                RemoveLocalOnly((string)e.Param);
            }
        }

private static void RemoveFromCacheEvent_Raised(object sender, EventNotificationEventArgs e)

{

 // if you don't want process events raised on this machine

// then check the raiser id

            if (e.RaiserId != CacheManager.LocalCacheManagerRaiserId)

            {

  // Do custom processing here...

 

            }

}

 

Hope this helps!

/Paul.

#40654
Edited, Jun 15, 2010 9:07
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.