23 lines
883 B
C#
23 lines
883 B
C#
using Nop.Core.Domain.Seo;
|
|
using Nop.Services.Caching;
|
|
|
|
namespace Nop.Services.Seo.Caching;
|
|
|
|
/// <summary>
|
|
/// Represents an URL record cache event consumer
|
|
/// </summary>
|
|
public partial class UrlRecordCacheEventConsumer : CacheEventConsumer<UrlRecord>
|
|
{
|
|
/// <summary>
|
|
/// Clear cache data
|
|
/// </summary>
|
|
/// <param name="entity">Entity</param>
|
|
/// <returns>A task that represents the asynchronous operation</returns>
|
|
protected override async Task ClearCacheAsync(UrlRecord entity)
|
|
{
|
|
await RemoveAsync(NopSeoDefaults.UrlRecordCacheKey, entity.EntityId, entity.EntityName, entity.LanguageId);
|
|
await RemoveAsync(NopSeoDefaults.UrlRecordBySlugCacheKey, entity.Slug);
|
|
await RemoveAsync(NopSeoDefaults.UrlRecordEntityIdLookupCacheKey, entity.LanguageId);
|
|
await RemoveAsync(NopSeoDefaults.UrlRecordSlugLookupCacheKey);
|
|
}
|
|
} |