tanglong 752e8450bc ss
2025-06-06 15:15:42 +08:00

20 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace YD_XinWei.Commons.MemoryCaches
{
/// <summary>
/// 缓存接口
/// </summary>
public interface ICaching
{
object Get(string cacheKey);
void Set(string cacheKey, object cacheValue);
void Update(string cacheKey, object cacheValue);
}
}