Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Forums;
using Nop.Services.Caching;
namespace Nop.Services.Forums.Caching;
///
/// Represents a forum cache event consumer
///
public partial class ForumCacheEventConsumer : CacheEventConsumer
{
///
/// Clear cache data
///
/// Entity
/// A task that represents the asynchronous operation
protected override async Task ClearCacheAsync(Forum entity)
{
await RemoveAsync(NopForumDefaults.ForumByForumGroupCacheKey, entity.ForumGroupId);
}
}