Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Common;
using Nop.Services.Caching;
namespace Nop.Services.Common.Caching;
/// <summary>
/// Represents a generic attribute cache event consumer
/// </summary>
public partial class GenericAttributeCacheEventConsumer : CacheEventConsumer<GenericAttribute>
{
/// <summary>
/// Clear cache data
/// </summary>
/// <param name="entity">Entity</param>
/// <returns>A task that represents the asynchronous operation</returns>
protected override async Task ClearCacheAsync(GenericAttribute entity)
{
await RemoveAsync(NopCommonDefaults.GenericAttributeCacheKey, entity.EntityId, entity.KeyGroup);
}
}