Newer
Older
TestingWithoutInterfaces / src / Web / Extensions / CacheHelpers.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 651 bytes Init
using System;

namespace Microsoft.eShopWeb.Web.Extensions;

public static class CacheHelpers
{
    public static readonly TimeSpan DefaultCacheDuration = TimeSpan.FromSeconds(30);
    private static readonly string _itemsKeyTemplate = "items-{0}-{1}-{2}-{3}";

    public static string GenerateCatalogItemCacheKey(int pageIndex, int itemsPage, int? brandId, int? typeId)
    {
        return string.Format(_itemsKeyTemplate, pageIndex, itemsPage, brandId, typeId);
    }

    public static string GenerateBrandsCacheKey()
    {
        return "brands";
    }

    public static string GenerateTypesCacheKey()
    {
        return "types";
    }
}