Fluxera.Extensions.Caching 8.0.5

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Fluxera.Extensions.Caching --version 8.0.5
NuGet\Install-Package Fluxera.Extensions.Caching -Version 8.0.5
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="Fluxera.Extensions.Caching" Version="8.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fluxera.Extensions.Caching --version 8.0.5
#r "nuget: Fluxera.Extensions.Caching, 8.0.5"
#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 Fluxera.Extensions.Caching as a Cake Addin
#addin nuget:?package=Fluxera.Extensions.Caching&version=8.0.5

// Install Fluxera.Extensions.Caching as a Cake Tool
#tool nuget:?package=Fluxera.Extensions.Caching&version=8.0.5

Build Status

Fluxera.Extensions

A library that extends the Microsoft.Extensions.* libraries with custom functionality and also provices custom extensions.

Fluxera.Extensions.Caching

This extension contains Option classes for configuring a remote distributed cache server and several useful extension methods for the IDistributedCache service.

Fluxera.Extensions.Common

This extension contains several custom services:

  • IDateTimeOffsetProvider A service that provides mockable access to static DateTimeOffset.
  • IDateTimeProvider A service that provides mockable access to static DateTime.
  • IGuidGenerator A service to generate Guid using different generators.
  • IHashCalculator A service to calculate hashes from input values.
  • IJitterCalculator A service that adds entropy to any given number.
  • IPasswordGenerator A service that generates random passwords.
  • IRetryDelayCalculator A service that calculates retry delay with (truncated) binary exponential back-off.
  • IStringEncryptionService A service that can be used to simply encrypt/decrypt texts.

Fluxera.Extensions.DataManagement

This extension contains an infrastructure for inserting seed data into databases.

Fluxera.Extensions.DependencyInjection

This extension contains several additions to the dependency injection extension.

  • Decorator
    • Add decorators to services.
  • Named Services
    • Add named service implementations.
  • Lazy Services
    • Add Lazy<T> as open generic sevice type. Any service will be resolved lazily from it.
  • Object Accessor
    • Provides a way to access object instances from the IServiceCollection while still configuring services.

Fluxera.Extensions.Http

This extension provides a way to register named HttpClient services and several custom DelegatingHandler implementations.

public interface ITestHttpClientService : IHttpClientService
{
    Task<string> GetSomethingAsync();
}

public class TestHttpClientService : HttpClientServiceBase, ITestHttpClientService
{
    /// <inheritdoc />
    public TestHttpClientService(string name, HttpClient httpClient, RemoteService options)
        : base(name, httpClient, options)
    {
    }

    public async Task<string> GetSomethingAsync()
    {
        HttpResponseMessage response = await this.HttpClient.GetAsync("/");
        return await response.Content.ReadAsStringAsync();
    }
}

services.AddHttpClientService<ITestHttpClientService, TestHttpClientService>(
	context => new TestHttpClientService(context.Name, context.HttpClient, context.Options));

Fluxera.Extensions.Localization

This extension contains several extension methods IStringLocalizer service.

Fluxera.Extensions.OData

This extension provides a way to register named ODataClient services using Simple.OData.Client.

public interface ITestODataClientService : IODataClientService
{
}

public class TestODataClientService : ODataClientServiceBase<Person, string>, ITestODataClientService
{
    /// <inheritdoc />
    public TestODataClientService(string name, string collectionName, IODataClient oDataClient, RemoteService options)
        : base(name, collectionName, oDataClient, options)
    {
    }
}

services.AddODataClientService<ITestODataClientService, TestODataClientService>("People",
    context => new TestODataClientService(context.Name, context.CollectionName, context.ODataClient, context.Options));

Fluxera.Extensions.Validation

This extension provides an abstraction over validation frameworks. Any one framework can be used together with other ones. The validation results will merged by the extension.

At the moment System.ComponentModel.Annotations and FluentValidation is supported. One can configure the validators to use like this:

IServiceCollection services = new ServiceCollection();

services.AddValidation(builder =>
{
    builder
        .AddDataAnnotations()
        .AddFluentValidation(registration =>
        {
            registration.AddValidator<PersonValidator>();
        });
});

References

Steve Collins

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 is compatible.  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 is compatible.  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 (2)

Showing the top 2 NuGet packages that depend on Fluxera.Extensions.Caching:

Package Downloads
Fluxera.Repository The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A generic repository implementation.

Fluxera.Extensions.Hosting.Modules.Caching The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A module that enables caching.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.5 111 3/19/2024
8.0.4 885 2/22/2024
8.0.3 575 1/21/2024
8.0.2 2,242 1/4/2024
8.0.1 796 11/23/2023
8.0.0 565 11/15/2023
7.2.4 592 7/23/2023
7.2.3 293 7/20/2023
7.2.2 550 6/21/2023
7.2.1 666 4/29/2023
7.2.0 647 4/25/2023
7.1.3 1,568 4/13/2023
7.1.2 865 3/16/2023
7.1.1 1,017 2/27/2023
7.1.0 1,460 1/18/2023
7.0.5 1,644 12/22/2022
7.0.4 484 12/13/2022
7.0.3 1,473 12/5/2022
7.0.2 886 11/15/2022
7.0.1 548 11/12/2022
7.0.0 297 11/9/2022
6.1.8 2,096 10/12/2022
6.1.7 5,658 9/20/2022
6.1.6 3,081 9/15/2022
6.1.5 1,998 7/30/2022
6.1.4 2,048 6/30/2022
6.1.3 2,010 6/15/2022
6.1.2 2,766 6/7/2022
6.1.1 413 6/4/2022
6.1.0 407 6/4/2022
6.0.34 406 6/4/2022
6.0.33 10,271 5/28/2022
6.0.32 1,191 5/27/2022
6.0.31 405 5/27/2022
6.0.29 6,718 5/10/2022
6.0.28 1,955 5/5/2022
6.0.27 1,157 4/20/2022
6.0.26 1,203 4/20/2022
6.0.25 420 4/19/2022
6.0.23 2,547 4/11/2022
6.0.22 421 4/11/2022
6.0.20 429 4/10/2022
6.0.19 3,806 3/24/2022
6.0.18 1,353 2/17/2022
6.0.14 911 12/17/2021
6.0.13 264 12/14/2021
6.0.11 277 12/13/2021
6.0.8 274 12/13/2021
6.0.6 281 12/13/2021
6.0.4 270 12/13/2021
6.0.2 421 12/12/2021