我有一个cacheHelper。当我将CacheHelper的依赖项添加到使用“ AddScoped”启动时,它正在工作。但是,Session['Sessionname'] = user;
正在为每个请求运行。因此,我将如下所示转换为“ AddSingleton”。但是我遇到了这样的错误:
无法使用单例“ MyProject.Caching.ICacheHelper”中的作用域服务“ MyProject.DataAccess.IUnitOfWork” 。如何解决此问题?
Strartup.cs
CacheHelper.cs
CacheHelper.cs
public void ConfigureServices(IServiceCollection services)
{
services.AddHttpContextAccessor();
services.AddScoped<IUnitOfWork, UnitOfWork>();
services.AddScoped<IJwtHelper, JwtHelper>();
services.AddScoped<IAuditHelper, AuditHelper>();
services.TryAdd(ServiceDescriptor.Singleton<IMemoryCache, MemoryCache>());
services.AddSingleton<ICacheHelper, CacheHelper>();
services.AddMvc();
services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
}
答案 0 :(得分:2)
您以前使用它的方式是正确的。 ICacheHelper
应该并且必须确定范围。
只是您的缓存实现是错误的。获取城市将被调用,它检查缓存。如果找不到,它将获取数据并将其放入缓存。
public class CacheHelper : ICacheHelper
{
private readonly IUnitOfWork unitOfWork;
public IMemoryCache Cache { get; }
public CacheHelper(IUnitOfWork unitOfWork, IMemoryCache cache)
{
this.unitOfWork = unitOfWork;
Cache = cache;
}
public string GetCities()
{
if(!Cache.TryGetValue<string>("cities", string out cities))
{
// not found in cache, obtain it
cities = unitOfWork.CityRepo.GetAll();
Cache.Set("cities", cities);
}
return cities;
}
}
您不需要SetCommonCacheItems()
方法。重要的是IMemoryCache
是静态的,因为它将包含数据。由于数据库的原因,必须限制UoW的范围,否则您将发生内存泄漏(尤其是在使用EF Core时,因为它缓存/跟踪实体)。