-
Notifications
You must be signed in to change notification settings - Fork 4
ICacheManager Clear
陈明旭 edited this page Apr 5, 2019
·
2 revisions
Welcome to the Materal wiki!
Home Materal Materal.CacheHelper ICacheManager
清空缓存。
ICacheManager cacheManager = new MemoryCacheManager();
string inputString = Console.ReadLine();
const string cacheKey = "MyKey";
const double saveHours = 1;
cacheManager.SetByAbsolute(cacheKey, inputString, saveHours);
cacheManager.Clear();