using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Central.Control.WebApi.Cache { public interface ICacheHelper { /// /// 此方法缓存不会过期,请谨慎使用 /// /// /// void SetByNotExpired(string key, T content); /// /// /// /// /// /// void Set(string key, T content, int seconds = 300); /// /// /// /// /// /// T Get(string key) where T : class; /// /// /// /// void Remove(string key); } }