cleared when media was deleted. Created base classes for cache refreshers, we now have a new event - CacheUpdated which can now be used by code to execute on each individual server when any cache refresher is updated. Listening to events normally only fire on the individual server so if people are wanting to refresh their own cache there was previously no way to do that.
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System;
|
|
using Umbraco.Core;
|
|
using Umbraco.Core.Cache;
|
|
using umbraco.interfaces;
|
|
|
|
namespace Umbraco.Web.Cache
|
|
{
|
|
/// <summary>
|
|
/// Handles User cache invalidation/refreshing
|
|
/// </summary>
|
|
public sealed class UserCacheRefresher : CacheRefresherBase<UserCacheRefresher>
|
|
{
|
|
protected override UserCacheRefresher Instance
|
|
{
|
|
get { return this; }
|
|
}
|
|
|
|
public override Guid UniqueIdentifier
|
|
{
|
|
get { return Guid.Parse(DistributedCache.UserCacheRefresherId); }
|
|
}
|
|
|
|
public override string Name
|
|
{
|
|
get { return "User cache refresher"; }
|
|
}
|
|
|
|
public override void RefreshAll()
|
|
{
|
|
ApplicationContext.Current.ApplicationCache.ClearCacheByKeySearch(CacheKeys.UserCacheKey);
|
|
}
|
|
|
|
public override void Refresh(int id)
|
|
{
|
|
Remove(id);
|
|
}
|
|
|
|
public override void Remove(int id)
|
|
{
|
|
ApplicationContext.Current.ApplicationCache.ClearCacheItem(string.Format("{0}{1}", CacheKeys.UserCacheKey, id));
|
|
}
|
|
|
|
}
|
|
} |