ND.App.Framework.Caching.Test 0.0.1

dotnet add package ND.App.Framework.Caching.Test --version 0.0.1
                    
NuGet\Install-Package ND.App.Framework.Caching.Test -Version 0.0.1
                    
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="ND.App.Framework.Caching.Test" Version="0.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ND.App.Framework.Caching.Test" Version="0.0.1" />
                    
Directory.Packages.props
<PackageReference Include="ND.App.Framework.Caching.Test" />
                    
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 ND.App.Framework.Caching.Test --version 0.0.1
                    
#r "nuget: ND.App.Framework.Caching.Test, 0.0.1"
                    
#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 ND.App.Framework.Caching.Test@0.0.1
                    
#: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=ND.App.Framework.Caching.Test&version=0.0.1
                    
Install as a Cake Addin
#tool nuget:?package=ND.App.Framework.Caching.Test&version=0.0.1
                    
Install as a Cake Tool

ND.App.Framework is a lightweight, high-performance Redis-based caching framework designed to simplify application-level caching in .NET. It supports string, JSON, bloom filters, and structured cache responses with consistent result handling. Built on StackExchange.Redis and NRedisStack, the framework provides an opinionated, plug-and-play caching layer with minimal configuration.

Product Compatible and additional computed target framework versions.
.NET 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on ND.App.Framework.Caching.Test:

Package Downloads
ND.Framework.Authorization

Patch Release

ND.FW.Authorization

A lightweight and extensible Authorization Provider for .NET applications, offering a unified package for Decrypting Token, Validating Token and Policy Based Validation such as RBAC

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.1 420 11/14/2025

Initial release of the ND Redis Caching Framework.
Includes strongly-typed cache operations for string, JSON, and bloom filters with consistent CacheResponse<T> result handling.

Added async string cache operations:
SetStringValueAsync<T>, GetStringValueAsync<T>, RemoveStringValueAsync

Added JSON cache operations including field-level updates:
SetJsonValue<T>, GetJsonValue<T>, RemoveJsonValueAsync,
UpdateJsonField<T>, DeleteJsonField, GetJsonField<T>

Added RedisBloom support:
CreateBloomFilter, AddToBloomFilter, BulkAddToBloomFilter,
MightExistInBloomFilter, BulkExistsInBloomFilter, RemoveBloomFilter

Standardized return model with CacheResponse<T> for all operations

Added structured Redis key generation (service / resource / identifier / scope / version)