Renamed Umbraco.Abstractions to Umbraco.Core
This commit is contained in:
51
src/Umbraco.Core/Cache/UserCacheRefresher.cs
Normal file
51
src/Umbraco.Core/Cache/UserCacheRefresher.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
using Umbraco.Core.Cache;
|
||||
using Umbraco.Core.Models.Membership;
|
||||
using Umbraco.Core.Persistence.Repositories;
|
||||
using Umbraco.Core.Persistence.Repositories.Implement;
|
||||
|
||||
namespace Umbraco.Web.Cache
|
||||
{
|
||||
public sealed class UserCacheRefresher : CacheRefresherBase<UserCacheRefresher>
|
||||
{
|
||||
public UserCacheRefresher(AppCaches appCaches)
|
||||
: base(appCaches)
|
||||
{ }
|
||||
|
||||
#region Define
|
||||
|
||||
protected override UserCacheRefresher This => this;
|
||||
|
||||
public static readonly Guid UniqueId = Guid.Parse("E057AF6D-2EE6-41F4-8045-3694010F0AA6");
|
||||
|
||||
public override Guid RefresherUniqueId => UniqueId;
|
||||
|
||||
public override string Name => "User Cache Refresher";
|
||||
|
||||
#endregion
|
||||
|
||||
#region Refresher
|
||||
|
||||
public override void RefreshAll()
|
||||
{
|
||||
ClearAllIsolatedCacheByEntityType<IUser>();
|
||||
base.RefreshAll();
|
||||
}
|
||||
|
||||
public override void Refresh(int id)
|
||||
{
|
||||
Remove(id);
|
||||
base.Refresh(id);
|
||||
}
|
||||
|
||||
public override void Remove(int id)
|
||||
{
|
||||
var userCache = AppCaches.IsolatedCaches.Get<IUser>();
|
||||
if (userCache)
|
||||
userCache.Result.Clear(RepositoryCacheKeys.GetKey<IUser>(id));
|
||||
|
||||
base.Remove(id);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user