Задание срока действия для IDistributedCache.SetAsync при использовании AddDistributedRedisCache

Я использую.net core api (2.1) с кэшем redis aws. Я не вижу способ установить срок действия IDistributedCache.SetAsync. Как это возможно?

Мой сегмент кода ниже:

// Startup.cs
public void ConfigureServices(IServiceCollection services)
{
    services.AddDistributedRedisCache(options =>
    {
        var redisCacheUrl = Configuration["RedisCacheUrl"];
        if (!string.IsNullOrEmpty(redisCacheUrl))
        {
            options.Configuration = redisCacheUrl;
        }
    });
}

//Set & GetCache
public async Task<R> GetInsights<R>(string cacheKey, IDistributedCache _distributedCache)
{
    var encodedResult = await _distributedCache.GetStringAsync(cacheKey);               

    if (!string.IsNullOrWhiteSpace(encodedResult))
    {
    var cacheValue = JsonConvert.DeserializeObject<R>(encodedResult);
    return cacheValue;
    }

    var result = GetResults<R>(); //Call to resource access
    var encodedResult = JsonConvert.SerializeObject(result);
    await _distributedCache.SetAsync(cacheKey, Encoding.UTF8.GetBytes(encodedResult)); //Duration?

    return result;
}

Как долго доступен кеш? Как установить время истечения? Если это невозможно, как я могу удалить кеш?

1 ответ

Решение

Это в options пары. Вы передаете экземпляр DistributedCacheEntryOptions, который имеет различные свойства, которые вы можете использовать, чтобы установить время истечения. Например:

await _distributedCache.SetAsync(cacheKey, Encoding.UTF8.GetBytes(encodedResult), new DistributeCacheEntryOptions
{
    AbsoluteExpirationRelativeToNow = TimeSpan.FromHours(1)
});
Другие вопросы по тегам