You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class CacheItem
{
public TimeSpan TimeSpan { get; set;}
}
[Fact]
public async Task Test_CacheAsync()
{
var cache = GetService<IDistributedCache<CacheItem, string>>();
var cacheValue = new TimeSpan(10, 10, 10);
await cache.SetAsync("abc", new CacheItem() { TimeSpan = cacheValue });
var value = await cache.GetAsync("abc");
value.TimeSpan.ShouldBe(cacheValue);
}
Use memory cache
The test is Failed
The text was updated successfully, but these errors were encountered:
Use memory cache
The test is Failed
The text was updated successfully, but these errors were encountered: