⚠ Deprecated: Legacy
Common.SmartCache provides intelligent loading for data providers such as external apis or databases. Age conscious data management is applied to allow automatic cache or data preload. AI assisted algorithms can be used to ensure data preloading, based on application use.
$ dotnet add package Common.SmartCacheCommon.SmartCache provides intelligent loading for data providers such as external api or databases.
Age conscious data management is applied to cache or preload data automatically.
AI assisted algorithms can be used to ensure data preloading, based on application use.
Articles:
NB: Common.SmartCache is currently under development and use ov versions 0.x.x.x is not supported
add Common.SmartCache to your application
load your data by means of Common.SmartCache cacheService
public async Task<UserProfileResponse> GetUserByEmailAddressAsync(string emailAddress, CacheContext cacheContext)
{
using var scope = logger.BeginMethodScope(() => new { emailAddress });
var cacheKey = new GetUserByEmailAddressAsyncCacheKey(emailAddress);
var result = await cacheService.GetAsync(
cacheKey,
() => wrapped.GetUserByEmailAddressAsyncAsync(emailAddress, MakeRequestOptions(scope)), cacheContext);
return result;
}
var cacheContext = new CacheContext() { Enabled = true, MaxAge = 300 };
var userProfile = await userProfileService.FindUserByEmailAddressAsync(context.Account.Email, cacheContext).ConfigureAwait(false);
Common.SmartCache will provide automatic caching based on payload size, retrieval latency etc. Common.SmartCache will support data preloading based on application use and age required for the loaded data.
Common.SmartCache component is supported on .Net Framework 4.6.2+ and .Net Core 3.0+. For more information visi:. [smartcache]: