Try your search with a different keyword or use * as a wildcard.
RedisCacheManager.cs
using System.Net;
using Microsoft.Extensions.Caching.Distributed;
using Nop.Core.Caching;
using Nop.Core.Configuration;
using Nop.Core.Infrastructure;
using StackExchange.Redis;
namespace Nop.Services.Caching;
///
/// Represents a redis distributed cache
///
public partial class RedisCacheManager : DistributedCacheManager
{
#region Fields
protected readonly IRedisConnectionWrapper _connectionWrapper;
#endregion
#region Ctor
public RedisCacheManager(AppSettings appSettings,
IDistributedCache distributedCache,
IRedisConnectionWrapper connectionWrapper,
ICacheKeyManager cacheKeyManager,
IConcurrentCollection