he 2024-07-17 10:10:28 +08:00
parent 614a3bd70e
commit 593ab42882
1 changed files with 4 additions and 0 deletions

View File

@ -2738,6 +2738,10 @@ namespace IRaCIS.Application.Services
_provider.Set(clearSkipReadingCacheKey, JsonConvert.SerializeObject(cacheIds), TimeSpan.FromHours(24));
}
var c = _provider.Get<string>(clearSkipReadingCacheKey).Value;
Console.WriteLine(c);
// 加这个测试
Thread.Sleep(3000); // 3000毫秒 = 3秒
return true;
}