public void BenchmarkTimedExpiry()
        {
            SixLabors.ImageSharp.Configuration.Default.MemoryAllocator = ArrayPoolMemoryAllocator.CreateDefault();

            using (var store = new TimedExpiryGlyphStore(baseResources, font_name))
                runFor(store);
        }
 public void BenchmarkTimedExpiryMemoryPooling()
 {
     using (var store = new TimedExpiryGlyphStore(baseResources, font_name))
         runFor(store);
 }