InMemory 1.0.7

Requires NuGet 2.8 or higher.

dotnet add package InMemory --version 1.0.7
NuGet\Install-Package InMemory -Version 1.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="InMemory" Version="1.0.7">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add InMemory --version 1.0.7
#r "nuget: InMemory, 1.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install InMemory as a Cake Addin
#addin nuget:?package=InMemory&version=1.0.7

// Install InMemory as a Cake Tool
#tool nuget:?package=InMemory&version=1.0.7

InMemory Cache

Build status nuget version Nuget downloads


A MemoryCache which tries to prevent cache miss for hot entries, by refreshing before expiration.

Auto Refreshing Cache example:


// define auto refreshing cache
var cache = new AutoRefreshingCache<string>(expireAfter: 10, refreshAfter: 8, cacheName: "shortTimeCache");

// add key/value data to cache
cache.Inject("key", "value");

// get count of expired cache by key elements
int expiredCacheCount = cache.CountExpiredElements(new[] { "key1", "key2", "key3", "key4" });

// get or update a key in cache, the update operate when occurred that cache was expired, else get old value.
var value = cache.Get("key", () => "new value");

Lifetime Cache example:


// define lifetime cache
var lifetimeCache = new AutoRefreshingCache<object>(cacheName: "lifetimeCache");
lifetimeCache.Inject("test", 123456);
int testValue = lifetimeCache.Get<int>("test");

Rate Limiter example:


// define rate limiter for decide can call a method too more or not?
var rateLimiter = new RateLimiter(maxTries: 100, inPeriod: 120, cacheName: "rateLimiterCache");
bool canProc = rateLimiter.CanProceed("method name or a key");

Request Limiter by IP Filter example:


// use rate limiter in Web API or MVC Controller to limit request count for all actions by IP filtering
[RequestLimiterByIpFilter] // default: maxTries: 2000, inPeriod: 3600, filterName: nameof(RequestLimiterByIpFilterAttribute)
[RequestLimiterByIpFilter(maxTries: 100, inPeriod: 120, filterName: nameof(TestController))] // customized
public class TestController : Controller
{
	public IActionResult GetTest()
	{
		// ...
	}

	.
	.
	.
}
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7 10,089 5/9/2018
1.0.6 5,086 5/9/2018
1.0.5 4,591 5/9/2018
1.0.4 4,797 5/5/2018
1.0.3 4,634 5/1/2018
1.0.2 4,646 4/30/2018
1.0.1 4,664 4/30/2018

* Add lifetime cache feature