Method GetCacheInfo
GetCacheInfo()
Gets information about the cache.
public SkillCacheInfo GetCacheInfo()
Returns
- SkillCacheInfo
Cache statistics.
Examples
Getting cache information:
using var loader = new SkillRemoteLoader();
var cacheInfo = loader.GetCacheInfo();
Console.WriteLine($"Cached skills: {cacheInfo.SkillCount}");
Console.WriteLine($"Total size: {cacheInfo.TotalSizeFormatted}");