SessionTracker 1.1.12
See the version list below for details.
dotnet add package SessionTracker --version 1.1.12
NuGet\Install-Package SessionTracker -Version 1.1.12
<PackageReference Include="SessionTracker" Version="1.1.12" />
paket add SessionTracker --version 1.1.12
#r "nuget: SessionTracker, 1.1.12"
// Install SessionTracker as a Cake Addin #addin nuget:?package=SessionTracker&version=1.1.12 // Install SessionTracker as a Cake Tool #tool nuget:?package=SessionTracker&version=1.1.12
SessionTracker
Library that allows working with distributed "sessions".
Features
- Session tracking via starting, updating, finishing, fetching and fetching finished
Session
objects. - Configurable caching settings per
Session
type. - Redis implementations provided out of the box.
Description
A session is encapsulated data that has to be passed around a distributed cache or any other backing-store custom implementation. It is helpful when dealing with for example Discord API interactions that may need some data passed between them without relying on Discords custom ID.
Installation
To register the session tracker service use the following extension methods:
For Redis implementation:
builder.AddRedisSessionTracker(options, redisOptions);
If you wish to configure the JsonSerializerOptions
used for serializing/deserializing session instances within Redis provider use:
services.Configure<JsonSerializerOptions>(SessionSettings.JsonSerializerName, yourOptions);
You can implement your own backing store provider by implementing ISessionsBackingStoreProvider
interface and registering your new service with the container like so:
services.AddSingleton<ISessionsBackingStoreProvider, YourImplementationType>;
Example usage
Create your own Session
type:
public CustomSession : Session
{
public bool IsThisASuperSession { get; set; }
public CustomSession(bool isSuper = true)
=> IsThisASuperSession = isSuper;
}
Inject ISessionTracker
to your handlers/services/controllers/whatnot:
Start session inside one handler:
public FirstSimpleInteractionHandler
{
private readonly ISessionTracker _tracker;
public FirstSimpleInteractionHandler(ISessionTracker tracker)
=> _tracker = tracker;
void Handle()
{
string key = "superKeyForThisSession";
var session = new CustomSession(false);
var lockResult = await _tracker.StartSessionAsync<CustomSession>(key, session);
if (!lockResult.IsSuccess)
return;
await using var @lock = lockResult.Entity;
}
}
Update from another:
public SecondSimpleInteractionHandler
{
private readonly ISessionTracker _tracker;
public SecondSimpleInteractionHandler(ISessionTracker tracker)
=> _tracker = tracker;
void Handle()
{
string key = "superKeyForThisSession"
var lockedResult = await _tracker.GetSessionAsync<CustomSession>(key);
if (!lockedResult.IsDefined(out var lockedSession))
return;
await using var @lock = lockedSession.Lock;
lockedSession.Session.IsThisASuperSession = false;
await _tracker.UpdateSessionAsync<CustomSession>(key, lockedSession.Session);
}
}
Use in third:
public ThirdSimpleInteractionHandler
{
private readonly ISessionTracker _tracker;
public ThirdSimpleInteractionHandler(ISessionTracker tracker)
=> _tracker = tracker;
void Handle()
{
string key = "superKeyForThisSession"
var result = await _tracker.GetBareSessionAsync<CustomSession>(key);
if (!result.IsDefined(out var session))
return;
var check = result.IsThisASuperSession // returns false
}
}
Finalize in fourth:
public FourthSimpleInteractionHandler
{
private readonly ISessionTracker _tracker;
public FourthSimpleInteractionHandler(ISessionTracker tracker)
=> _tracker = tracker;
void Handle()
{
string key = "superKeyForThisSession"
var lockResult = await _tracker.LockAsync<CustomSession>(key);
if (!lockResult.IsSuccess)
return;
await using var @lock = lockResult.Entity;
await _tracker.FinishSessionAsync<CustomSession>(key);
}
}
Get from finalized cache in fifth:
public FifthSimpleInteractionHandler
{
private readonly ISessionTracker _tracker;
public FifthSimpleInteractionHandler(ISessionTracker tracker)
=> _tracker = tracker;
void Handle()
{
string key = "superKeyForThisSession"
// note that using GetSessionAsync here would result in a NotFoundError
var result = await _tracker.GetFinishedSessionAsync<CustomSession>(key);
if (!result.IsDefined(out var session))
return;
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- JetBrains.Annotations (>= 2022.1.0)
- Microsoft.Extensions.Caching.StackExchangeRedis (>= 6.0.8)
- RedLock.net (>= 2.3.2)
- Remora.Results (>= 7.2.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SessionTracker:
Package | Downloads |
---|---|
SessionTracker.Redis
Sub library that adds Redis backing-store implementation for the SessionTracker. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.15 | 416 | 1/9/2023 |
2.0.14 | 353 | 1/9/2023 |
2.0.13 | 406 | 11/19/2022 |
2.0.12 | 411 | 11/19/2022 |
2.0.11 | 501 | 9/6/2022 |
2.0.9 | 494 | 9/4/2022 |
2.0.8 | 483 | 9/4/2022 |
2.0.7 | 497 | 9/4/2022 |
2.0.6 | 494 | 9/4/2022 |
2.0.5 | 486 | 9/4/2022 |
2.0.4 | 504 | 9/4/2022 |
2.0.3 | 499 | 9/4/2022 |
2.0.2 | 486 | 9/4/2022 |
2.0.1 | 493 | 9/3/2022 |
2.0.0 | 389 | 9/3/2022 |
1.1.13 | 425 | 8/30/2022 |
1.1.12 | 379 | 8/30/2022 |
1.1.11 | 379 | 8/30/2022 |
1.1.10 | 380 | 8/30/2022 |
1.1.9 | 374 | 8/30/2022 |
1.1.8 | 393 | 8/29/2022 |
1.1.7 | 386 | 8/29/2022 |
1.1.6 | 387 | 8/29/2022 |
1.1.5 | 392 | 8/29/2022 |
1.1.4 | 377 | 8/29/2022 |
1.1.3 | 388 | 8/29/2022 |
1.1.2 | 394 | 8/29/2022 |
1.1.1 | 398 | 8/29/2022 |
1.1.0 | 382 | 8/29/2022 |
1.0.20 | 387 | 8/29/2022 |
1.0.19 | 398 | 8/29/2022 |
1.0.18 | 374 | 8/29/2022 |
1.0.17 | 371 | 8/29/2022 |
1.0.16 | 377 | 8/29/2022 |
1.0.15 | 361 | 8/29/2022 |
1.0.14 | 375 | 8/28/2022 |
1.0.13 | 369 | 8/28/2022 |
1.0.12 | 386 | 8/28/2022 |
1.0.11 | 388 | 8/28/2022 |
1.0.10 | 373 | 8/28/2022 |
1.0.9 | 378 | 8/28/2022 |
1.0.8 | 384 | 8/27/2022 |
1.0.7 | 382 | 8/27/2022 |
1.0.6 | 382 | 8/27/2022 |
1.0.5 | 392 | 8/27/2022 |
1.0.4 | 388 | 8/27/2022 |
1.0.3 | 370 | 8/27/2022 |
1.0.2 | 395 | 8/27/2022 |
1.0.1 | 388 | 8/27/2022 |
1.0.0 | 412 | 8/27/2022 |