TbUtil.TbCacheManager 1.0.0

dotnet add package TbUtil.TbCacheManager --version 1.0.0
NuGet\Install-Package TbUtil.TbCacheManager -Version 1.0.0
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="TbUtil.TbCacheManager" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TbUtil.TbCacheManager --version 1.0.0
#r "nuget: TbUtil.TbCacheManager, 1.0.0"
#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 TbUtil.TbCacheManager as a Cake Addin
#addin nuget:?package=TbUtil.TbCacheManager&version=1.0.0

// Install TbUtil.TbCacheManager as a Cake Tool
#tool nuget:?package=TbUtil.TbCacheManager&version=1.0.0

TB Util Caching

This caching library provides a simplified abstraction over CacheManager by wrapping cache configuration into generic providers and invalidators.

The library currently supports Redis as a backplane if you provide a connection to a Redis server. A backplane allows all instances of your application to remain up to date no matter which process adds or removes cache items. When an item is removed from a remote process, a pub/sub signal is sent to all connected clients to remove their key from memory as well so they never serve stale data. More information on cache synchronization can be found here: Cache Synchronization

The state of the connection to Redis is monitored so outages will switch to a secondary system managed, in-memory cache until the connection is restored. Cache items stored during the outage will be lost when it switched back over to the backplane version, items removed will be removed in Redis to ensure that other consumers don't get stale data.

JSON was the choice made for serializing objects. Having the data in cache using JSON allows it to be easily read by humans for investigation, small JSON payloads are faster to serialize than binary (source), and JSON is also far more lenient when deserialilzing if object structures change.


CacheFactory

The factory provides a simple way to create providers and invalidators while internally caching their instances to avoid expensive configuration and connection operations. You should largely avoid creating your own instances and make use of the simple factory methods instead.

At the start of your application or service, you should setup the factory with the necessary information it needs to create instances for you.

// The environment is used as a prefix to ensure no conflicts on shared Redis servers.
// Debug | TST | PROD
var environment = "Debug";

// Optional Redis server to use as a backplane.
var redisServer = "127.0.0.1:6379,ssl=False,allowAdmin=True";

// Optional Redis database number.
var redisDatabaseId = 10

CacheFactory.Setup(environment, redisServer, redisDatabaseId);

If you do not call CacheFactory.Setup, all caching will be in-memory only. To make use of the backplane facility you should always setup the factory as early as possible.


Cache Providers

Cache providers are also invalidators allowing you to remove and clear cache items. To create a provider you use the CacheFactory and provide a type and any default expiry settings.

// Optional default type of expiry, sliding will reset the time whenever an item is accessed, absolute will remove from cache as soon as the wait time is over.
var expiryType = ExpiryType.Sliding;

// Optional time for when to expire items in the cache.
var expiryTime = TimeSpan.FromMinutes(10);

// Optional indication of whether the data is volatile.
// Volatile data is very short-lived but must not be removed under memory pressure.
// Non-volatile data will be internally managed where it could be removed before the expiry under memory pressure situations.
// Be careful with volatile data because you could potentially run into out-of-memory situations with large amounts of unmanaged data.
var isVolatile = true;

// Get an instance of a cache provider that stores DeviceOrder classes.
ICacheProvider<DeviceOrder> loginUserCache = CacheFactory.GetCacheProvider<DeviceOrder>(expiryType, expiryTime, isVolatile);

In the example above any items will be removed from the cache if they are not access in within 10 minutes.

When adding items to the cache you can override the default expiry using the overloads available.

// Use the default expiry settings.
loginUserCache.Set("user-id-999", deviceObject);

// Expire this item exactly 15 minutes from now.
loginUserCache.Set("user-id-123", deviceObject123, DateTime.UtcNow.AddMinutes(15));

// Expire this item if it is not accessed for 30 minutes.
loginUserCache.Set("user-id-456", deviceObject456, TimeSpan.FromMinutes(30));

Retrieving from cache is also as simple as calling the Get method with the key. If the item is not found you will get default(T) as a return value.

// Get user 999, if not found then it will be null
var deviceObject = loginUserCache.Get("user-id-999");
if (deviceObject is null)
{
  // Not found in the cache :(
}
else
{
  // Found the device object in the cache :)
}

Factory Get methods are also provided to automatically populate the cache if the item does not exist.

// Get cached number, if not found then it set the cache item to 42 and return the value.
var number = numberCache.Get("my-number", () => 42);

Tools

Redis on Windows - Run a local Redis server and connect to it using 127.0.0.1:6379,ssl=False,allowAdmin=True as your connection string.

Redis Desktop Manager - A simple and free GUI client to connect to Redis and view cache keys and values.

Product 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. 
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.0 472 4/30/2022