LANCommander/LANCommander.Server.Services/Extensions/CacheExtensions.cs
2025-02-09 01:37:31 -06:00

14 lines
No EOL
361 B
C#

using ZiggyCreatures.Caching.Fusion;
namespace LANCommander.Server.Services.Extensions;
public static class CacheExtensions
{
public static async Task ExpireGameCacheAsync(this IFusionCache cache, Guid? gameId)
{
if (gameId.HasValue)
{
await cache.RemoveByTagAsync([ $"Games/{gameId}", "Games", "Depot"]);
}
}
}