使用 AddDistributedRedisCache 时为 IDistributedCache.SetAsync 设置过期

Setting expiration for IDistributedCache.SetAsync while using AddDistributedRedisCache

我正在使用 .net 核心 api (2.1) 和 aws redis 缓存。我看不到为 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;
}

缓存可用多长时间?如何设置过期时间?如果那不可能,我该如何删除缓存?

它在 options 参数中。您传递了一个 DistributedCacheEntryOptions 的实例,它具有您可以用来设置过期时间的各种属性。例如:

await _distributedCache.SetAsync(cacheKey, Encoding.UTF8.GetBytes(encodedResult), new DistributedCacheEntryOptions
{
    AbsoluteExpirationRelativeToNow = TimeSpan.FromHours(1)
});