I have an IHostedService
that saves a reference table from the database to cache in .NET Core 6. Meaning, the information saved will not be changed; it's just a reference table. Though there were probably multiple users who will access this, the data wont be changed and appended. For me this will be enough.
Question/s: though this is simple - are there any standard ways of doing this? (I'm just thinking the data is just plainly saved in memory). Isn't it unsafe? Any thoughts?
Start up:
builder.Services.AddMemoryCache();
builder.Services.AddHostedService<InitializeCacheService>();
To initialize it:
public class InitializeCacheService : IHostedService
{
private readonly IServiceProvider _serviceProvider;
public InitializeCacheService (IServiceProvider serviceProvider)
{
_serviceProvider = serviceProvider;
}
public Task StartAsync(CancellationToken cancellationToken)
{
using (var scope = _serviceProvider.CreateScope())
{
var repo = _serviceProvider.GetService<IRepository>();
var values = repo.GetValues();
var cache = _serviceProvider.GetService<IMemoryCache>();
cache.Set("ValuesList", values);
}
return Task.CompletedTask;
}
public Task StopAsync(CancellationToken cancellationToken)
{
return Task.CompletedTask;
}
}
To retrieve cache:
[HttpGet("{key}")]
public ActionResult<string> Get(string key)
{
// _cache.Count is 0
if (!_cache.TryGetValue(key, out var value))
{
return NotFound($"The value with the {key} is not found");
}
return value + "";
}
Good afternoon, I use this class:
To set a cache value:
To get a cached value:
I hope it works for you, regards