ModularityKit.Mutator.Governance.Redis 1.7.0

dotnet add package ModularityKit.Mutator.Governance.Redis --version 1.7.0
                    
NuGet\Install-Package ModularityKit.Mutator.Governance.Redis -Version 1.7.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="ModularityKit.Mutator.Governance.Redis" Version="1.7.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModularityKit.Mutator.Governance.Redis" Version="1.7.0" />
                    
Directory.Packages.props
<PackageReference Include="ModularityKit.Mutator.Governance.Redis" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ModularityKit.Mutator.Governance.Redis --version 1.7.0
                    
#r "nuget: ModularityKit.Mutator.Governance.Redis, 1.7.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.
#:package ModularityKit.Mutator.Governance.Redis@1.7.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ModularityKit.Mutator.Governance.Redis&version=1.7.0
                    
Install as a Cake Addin
#tool nuget:?package=ModularityKit.Mutator.Governance.Redis&version=1.7.0
                    
Install as a Cake Tool

ModularityKit.Mutator.Governance.Redis overview

See the generated provider root at obj/api/redis/ModularityKit.Mutator.Governance.Redis.html for the public API surface and type tree.

Package structure

  • Configuration for provider options
  • DependencyInjection for service registration
  • Keys for Redis key conventions
  • Storage for the public store facade
  • Storage/Candidates for Redis index candidate selection
  • Storage/Candidates/Models for candidate plan models
  • Storage/Candidates/Planning for candidate plan construction
  • Storage/Candidates/Execution for candidate plan execution
  • Storage/Documents for request document loading
  • Storage/Documents/Keys for Redis document key creation
  • Storage/Documents/Payloads for bulk payload reads
  • Storage/Documents/Materialization for request document deserialization and ordering
  • Storage/Documents/Reading for document read orchestration
  • Storage/Identifiers for Redis set and id reads
  • Storage/Identifiers/Models for identifier set operation models
  • Storage/Identifiers/Loading for Redis id set loading and normalization
  • Storage/Persistence for write-side request persistence
  • Storage/Persistence/Models for persistence record models
  • Storage/Persistence/Reading for single request persistence reads
  • Storage/Persistence/Writing for write transactions, payload creation, and index maintenance
  • Storage/Queries for query orchestration and result materialization
  • Storage/Queries/Reading for request query orchestration
  • Storage/Queries/Materialization for query result shaping
  • Serialization for request payload handling
  • Serialization/Converters for custom JSON converters

Usage

using Microsoft.Extensions.DependencyInjection;
using ModularityKit.Mutator.Governance.Redis;
using StackExchange.Redis;

var services = new ServiceCollection();
var multiplexer = await ConnectionMultiplexer.ConnectAsync("localhost:6379");

services.AddRedisGovernanceStore(
    multiplexer,
    options => options.KeyPrefix = "modularitykit:governance");

Current query strategy

The provider uses Redis indexes first and then applies the storage-agnostic governance query evaluator in memory for the final filter pass.

Today this means:

  • point reads and optimistic concurrency stay fully Redis-backed
  • common queue views are narrowed by Redis set membership
  • broad ad hoc filters still finish in memory after candidate selection
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.7.0 116 7/4/2026
1.6.0 127 6/29/2026
1.5.0 127 6/26/2026