TimedDictionary 1.0.0
See the version list below for details.
dotnet add package TimedDictionary --version 1.0.0
NuGet\Install-Package TimedDictionary -Version 1.0.0
<PackageReference Include="TimedDictionary" Version="1.0.0" />
<PackageVersion Include="TimedDictionary" Version="1.0.0" />
<PackageReference Include="TimedDictionary" />
paket add TimedDictionary --version 1.0.0
#r "nuget: TimedDictionary, 1.0.0"
#:package TimedDictionary@1.0.0
#addin nuget:?package=TimedDictionary&version=1.0.0
#tool nuget:?package=TimedDictionary&version=1.0.0
TimedDictionary
The TimedDicionary and TimedTaskDictionary class is a time-based self-cleaning dictionary structure.
Evaluation functions locks the TimedDictionary. For environments with high concurrency and long-running evaluations, consider using TimedTaskDictionary to wrap evaluations round Tasks.
Also important to note that this library does not dispose of any value when it times-out - the value is only removed from the dictionary.
Parameters
| Parameter | Description |
|---|---|
| expectedDuration | How many miliseconds each value should be kept in the dictionary. If null, the structure will keep all records until manually removed. Default: null |
| maximumSize | Maximum amount of values. When the limit is reached, no new object will be added, and keys that are not found will always execute the evaluation function. If null, there will be no limit to the dictionary size. Default: null |
| extendTimeConfiguration | Allows to configure time extension. This allows to increase each object lifetime inside the dictionry by X miliseconds, up to Y miliseconds, everytime the value is retrieved. If null, the object lifetime will obey the expectedDuration configuration. Default: null |
| dateTimeProvider | Mostly for test purposes, it allows the user to override how the current DateTime is calculated. Default: null |
Usage
General example
var dictionary = new TimedDictionary<Key, Value>();
var retrievedValue = dictionary.GetOrAddIfNew(key, () => GenerateValue());
Configure to remove objects 5 seconds after they were added
var dictionary = new TimedDictionary<Key, Value>(expectedDuration: 5000);
Manually remove an entry
var retrievedValue = dictionary.Remove(key);
Recommended usage
In-memory cache, keeping the most accessed values through refresh
// Every time the entry is retrieved, the time is extended to another 30 seconds
// If the entry exists for 10 minutes, it's automatically removed
var config = new ExtendTimeConfiguration
(
duration: TimeSpan.FromSeconds(30).TotalMilliseconds,
limit: TimeSpan.FromMinutes(10).TotalMilliseconds
);
// Make the objects exist for 30 seconds by default
// Limit the cache size to 1M entries, to avoid memory overflow
var dictionary = new TimedDictionary<Key, Task<Value>>
(
expectedDuration: TimeSpan.FromSeconds(30).TotalMilliseconds,
extendTimeConfiguration: config,
maximumSize: 1_000_000
);
var retrievedValue = dictionary.GetOrAddIfNew(key, () => GenerateValue());
return retrievedValue;
Web - Bundle different requests into a single task
When multiple users request the same thing, instead of starting one task for each request, the TimedDictionary allows all the requests to await the same task. This helps avoiding redundant processing, like multiple database calls.
It is recommended to use TimedTaskDictionary instead of TimedDictionary, because it requires less boilerplate code to wrap around tasks.
public async Task<IResult> GetAsync(
[FromService]TimedTaskDictionary<Key, Value> singletonDictionary,
[FromRoute]Key id)
{
var task = singletonDictionary.GetOrAddIfNewAsync(key, () => RetrieveValueAsync(id));
var result = await task;
return Results.Json(result);
}
sequenceDiagram
Requests->>TimedDictionary: Retrieve ID 1
TimedDictionary->>Evaluation function: Start new task for ID 1
Evaluation function->>TimedDictionary: Created task
TimedDictionary->>TimedDictionary: Cache task for ID 1
TimedDictionary->>Requests: Cached task
Requests->>TimedDictionary: Retrieve ID 1
TimedDictionary->>Requests: Cached task
Requests->>TimedDictionary: Retrieve ID 1
TimedDictionary->>Requests: Cached task
TimedDictionary->>TimedDictionary: Uncaching task after X miliseconds
TimedTaskDictionary.GetOrAddIfNewAsync also has an additional parameter for AfterTaskCompletion, which can be configured to remove the entry from the dictionary right after the task is completed, if that's the desired behaviour.
timedTaskDictionary.GetOrAddIfNewAsync(key, AsyncFunction, AfterTaskCompletionRemoveFromDictionary);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.