public void Remove(string key) { CacheContext.Remove(key); }
public bool Create(string key, T val, DateTime expire) { //设置缓存 return(CacheContext.Set <T>(key, val, expire)); }