PabloCache.Abstractions
0.1.0-alpha
See the version list below for details.
dotnet add package PabloCache.Abstractions --version 0.1.0-alpha
NuGet\Install-Package PabloCache.Abstractions -Version 0.1.0-alpha
<PackageReference Include="PabloCache.Abstractions" Version="0.1.0-alpha" />
paket add PabloCache.Abstractions --version 0.1.0-alpha
#r "nuget: PabloCache.Abstractions, 0.1.0-alpha"
// Install PabloCache.Abstractions as a Cake Addin #addin nuget:?package=PabloCache.Abstractions&version=0.1.0-alpha&prerelease // Install PabloCache.Abstractions as a Cake Tool #tool nuget:?package=PabloCache.Abstractions&version=0.1.0-alpha&prerelease
PabloCache Component
The PabloCache component provides an abstraction layer for a versatile caching mechanism in a .NET application. It is designed to be easily integrated into your project using the Microsoft.Extensions.DependencyInjection framework.
ICacheService Interface
The ICacheService
interface, found in the PabloCache.Abstractions.Api.Services
namespace, defines methods for interacting with the cache. It includes the following methods:
GetCachedValue<T>: Retrieves a cached value by providing a cache key, a resolver function to generate the value if not found, and an optional time-to-live (TTL) in minutes.
Task<T> GetCachedValue<T>(string cacheKey, Func<Task<T>> resolver, int ttlMinutes = 5) where T : class;
TryGetCachedValue<T>: Attempts to retrieve a cached value by providing a cache key, a resolver function to generate the value if not found, and an optional time-to-live (TTL) in minutes. Unlike GetCachedValue, this method returns a nullable result.
Task<T?> TryGetCachedValue<T>(string cacheKey, Func<Task<T?>> resolver, int ttlMinutes = 5) where T : class;
IPabloCacheComponent Interface
The IPabloCacheComponent
interface, found in the PabloCache.Abstractions.Configuration
namespace, defines a method for configuring the caching component within the Dependency Injection framework.
- SetCacheService<T>: Sets the cache service implementation type, allowing customization of the caching behavior. The ServiceLifetime parameter specifies the lifetime of the service in the DI container.
IPabloCacheComponent SetCacheService<T>(ServiceLifetime lifetime = ServiceLifetime.Scoped) where T : ICacheService;
ServiceCollectionExtensions
The ServiceCollectionExtensions
class, found in the PabloCache.Abstractions.Configuration
namespace, provides an extension method for IServiceCollection
to simplify the registration of the PabloCache component.
- AddPabloCaching: Adds the PabloCache component to the service collection. It accepts an optional configuration delegate for customizing the component before registration.
public static IServiceCollection AddPabloCaching(this IServiceCollection services, Action<IPabloCacheComponent>? componentConfig = null);
Usage Example:
services.AddPabloCaching(component =>
{
// Set your own implementation of the cache service
component.SetCacheService<CustomCacheService>(ServiceLifetime.Singleton);
});
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
NuGet packages (3)
Showing the top 3 NuGet packages that depend on PabloCache.Abstractions:
Package | Downloads |
---|---|
PabloDispatch
PabloDispatch is a C# library designed to simplify and implement the Command Query Responsibility Segregation (CQRS) pattern in your application. |
|
PabloCache.Redis
The PabloCache Memory Cache Implementation extends the PabloCache component by providing a concrete implementation using Microsoft's Memory Cache. This implementation allows you to use an in-memory cache for your caching needs. |
|
PabloCache.MemoryCache
The PabloCache Memory Cache Implementation extends the PabloCache component by providing a concrete implementation using Microsoft's Memory Cache. This implementation allows you to use an in-memory cache for your caching needs. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0-alpha | 146 | 12/28/2023 |
0.1.0-alpha | 115 | 12/24/2023 |