Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Catalog;
using Nop.Services.Caching;
namespace Nop.Services.Catalog.Caching;
///
/// Represents a product specification attribute cache event consumer
///
public partial class ProductSpecificationAttributeCacheEventConsumer : CacheEventConsumer
{
///
/// Clear cache data
///
/// Entity
/// A task that represents the asynchronous operation
protected override async Task ClearCacheAsync(ProductSpecificationAttribute entity)
{
await RemoveByPrefixAsync(NopCatalogDefaults.ProductSpecificationAttributeByProductPrefix, entity.ProductId);
await RemoveByPrefixAsync(NopCatalogDefaults.FilterableSpecificationAttributeOptionsPrefix);
await RemoveAsync(NopCatalogDefaults.SpecificationAttributeGroupByProductCacheKey, entity.ProductId);
}
}