4 implementations of SetAsync
Microsoft.Extensions.Caching.Hybrid.Tests (2)
BufferReleaseTests.cs (1)
88ValueTask IBufferDistributedCache.SetAsync(string key, ReadOnlySequence<byte> value, DistributedCacheEntryOptions options, CancellationToken token)
L2Tests.cs (1)
171ValueTask IBufferDistributedCache.SetAsync(string key, ReadOnlySequence<byte> value, DistributedCacheEntryOptions options, CancellationToken token)
Microsoft.Extensions.Caching.SqlServer (1)
SqlServerCache.cs (1)
215async ValueTask IBufferDistributedCache.SetAsync(
Microsoft.Extensions.Caching.StackExchangeRedis (1)
RedisCache.cs (1)
203ValueTask IBufferDistributedCache.SetAsync(string key, ReadOnlySequence<byte> value, DistributedCacheEntryOptions options, CancellationToken token)
2 references to SetAsync
Microsoft.Extensions.Caching.Hybrid (1)
Internal\DefaultHybridCache.L2.cs (1)
86return cache.SetAsync(key, buffer.AsSequence(), GetOptions(options), token);
Microsoft.Extensions.Caching.Hybrid.Tests (1)
DistributedCacheTests.cs (1)
248await cache.SetAsync(key, payload, _fiveMinutes);