|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.AspNetCore.OutputCaching;
/// <summary>
/// Represents a store for cached responses.
/// </summary>
public interface IOutputCacheStore
{
/// <summary>
/// Evicts cached responses by tag.
/// </summary>
/// <param name="tag">The tag to evict.</param>
/// <param name="cancellationToken">Indicates that the operation should be cancelled.</param>
ValueTask EvictByTagAsync(string tag, CancellationToken cancellationToken);
/// <summary>
/// Gets the cached response for the given key, if it exists.
/// If no cached response exists for the given key, <c>null</c> is returned.
/// </summary>
/// <param name="key">The cache key to look up.</param>
/// <param name="cancellationToken">Indicates that the operation should be cancelled.</param>
/// <returns>The response cache entry if it exists; otherwise <c>null</c>.</returns>
ValueTask<byte[]?> GetAsync(string key, CancellationToken cancellationToken);
/// <summary>
/// Stores the given response in the response cache.
/// </summary>
/// <param name="key">The cache key to store the response under.</param>
/// <param name="value">The response cache entry to store.</param>
/// <param name="tags">The tags associated with the cache entry to store.</param>
/// <param name="validFor">The amount of time the entry will be kept in the cache before expiring, relative to now.</param>
/// <param name="cancellationToken">Indicates that the operation should be cancelled.</param>
ValueTask SetAsync(string key, byte[] value, string[]? tags, TimeSpan validFor, CancellationToken cancellationToken);
}
|