rename Cache service to OutputCache

This commit is contained in:
sbwalker
2025-03-11 11:48:43 -04:00
parent 70a3fab1ff
commit 8d4b30140e
13 changed files with 127 additions and 67 deletions

View File

@ -0,0 +1,18 @@
using System.Threading;
using System.Threading.Tasks;
namespace Oqtane.Services
{
/// <summary>
/// Service to manage cache
/// </summary>
public interface IOutputCacheService
{
/// <summary>
/// Evicts the output cache for a specific tag
/// </summary>
/// <param name="tag"></param>
/// <returns></returns>
Task EvictByTag(string tag);
}
}