Proxima.SelfEdu.DependencyInjection.AbTesting 2.0.0

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

// Install Proxima.SelfEdu.DependencyInjection.AbTesting as a Cake Tool
#tool nuget:?package=Proxima.SelfEdu.DependencyInjection.AbTesting&version=2.0.0

A/B Testing via ASP.NET Core DI.

Extensions for ASP.NET Core dependency injection allowing for easy A/B Testing.

Usage

If you have multiple implementations for a service, you can register them as an experiment. In this case, every time a new implementation is constructed, one of the variants is selected at random.

builder.Services.AddScopedExperiment<IMessageProvider>()
    .AddVariant<MessageProviderVariantA>()
    .AddVariant<MessageProviderVariantB>()
    .Finish();

One could also specify a weight (proportional probability) for a variant. Variants that do not have weight specified are considered to have a weight of 1.0. Managing weight values should allow you to set a certain ratio - for example, have a baseline option and a variant that is provided for 10% of users.

    .AddVariant<MessageProviderBaseline>(0.9)
    .AddVariant<MessageProviderExperimental>(0.1)

To monitor results, Activity.Current, if present, is annotated with abtesting.variant.{serviceName} tag. You may find it useful for performance comparisons, or, for example, for comparing error rates.

Versioning

We use semantic versioning for this package. If updating to next major version, please check Change Log for breaking changes.

Contributing

Please feel free to report any issues or submit pull requests via Github.

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.
  • net6.0

    • No dependencies.

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
2.0.0 243 2/19/2023
1.2.0 222 2/18/2023
1.1.0 238 2/14/2023
1.0.0 238 2/12/2023