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
<PackageReference Include="ND.App.Framework.Caching.Test" Version="0.0.1" />
<PackageVersion Include="ND.App.Framework.Caching.Test" Version="0.0.1" />
<PackageReference Include="ND.App.Framework.Caching.Test" />
paket add ND.App.Framework.Caching.Test --version 0.0.1
#r "nuget: ND.App.Framework.Caching.Test, 0.0.1"
#:package ND.App.Framework.Caching.Test@0.0.1
#addin nuget:?package=ND.App.Framework.Caching.Test&version=0.0.1
#tool nuget:?package=ND.App.Framework.Caching.Test&version=0.0.1
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 | Versions 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. |
-
net8.0
- Microsoft.Extensions.Options (>= 10.0.0)
- NRedisStack (>= 1.1.1)
- StackExchange.Redis (>= 2.9.32)
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)