You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
C#
53 lines
1.7 KiB
C#
using System;
|
|
|
|
using Enyim.Caching;
|
|
using Expedience.Infrastructure.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Expedience.Infrastructure
|
|
{
|
|
public interface IExpedienceRepository : IDisposable
|
|
{
|
|
Task<List<DutyCompletionRecord>> GetDutyCompletionRecords(string expac, CancellationToken cancellationToken);
|
|
}
|
|
|
|
public class ExpedienceRepository : IExpedienceRepository
|
|
{
|
|
private readonly ExpedienceContext _dbContext;
|
|
private readonly IMemcachedClient _memcachedClient;
|
|
|
|
public ExpedienceRepository(ExpedienceContext dbContext, IMemcachedClient memcachedClient)
|
|
{
|
|
_dbContext = dbContext;
|
|
_memcachedClient = memcachedClient;
|
|
}
|
|
|
|
public async Task<List<DutyCompletionRecord>> GetDutyCompletionRecords(string expac, CancellationToken cancellationToken)
|
|
{
|
|
var cacheKey = $"xpd-dcr-{expac}";
|
|
|
|
if (_memcachedClient.TryGet<string>(cacheKey, out var cachedRecords))
|
|
{
|
|
return JsonConvert.DeserializeObject<List<DutyCompletionRecord>>(cachedRecords);
|
|
}
|
|
else
|
|
{
|
|
var records = await _dbContext.DutyCompletionRecords.FromSqlInterpolated($"SELECT * FROM public.get_dutycompletionrecords({expac})")
|
|
.ToListAsync();
|
|
|
|
var json = JsonConvert.SerializeObject(records);
|
|
|
|
await _memcachedClient.AddAsync(cacheKey, json, TimeSpan.FromMinutes(10));
|
|
|
|
return records;
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_memcachedClient.Dispose();
|
|
}
|
|
}
|
|
}
|