Skip to content

[6.1.0] Improving Request matching cache

Latest

Choose a tag to compare

@Gekctek Gekctek released this 18 Mar 21:04
4a68aa8

Improving Request matching cache to avoid memory leaks

Can override IOptions to change cache settings:

services
.Configure<RequestCacheOptions>(options =>
{
	options.SizeLimit = 10;
	options.SlidingExpiration = TimeSpan.FromMinutes(5);
	options.AbsoluteExpiration = TimeSpan.FromMinutes(90);
});

What's Changed

Full Changelog: 6.0.2...6.1.0