Files
Yi.Framework/CC.Yi.Common/Cache/ICacheWriter.cs
454313500@qq.com fe850bbc2c v2.0.0
2021-05-13 01:39:34 +08:00

19 lines
496 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CC.Yi.Common.Cache
{
public interface ICacheWriter
{
bool AddCache<T>(string key, T value, DateTime expDate);
bool AddCache<T>(string key, T value);
bool RemoveCache(string key);
T GetCache<T>(string key);
bool SetCache<T>(string key, T value, DateTime expDate);
bool SetCache<T>(string key, T value);
}
}