Net.Cache 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Net.Cache --version 1.0.0
NuGet\Install-Package Net.Cache -Version 1.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="Net.Cache" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Net.Cache --version 1.0.0
#r "nuget: Net.Cache, 1.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 Net.Cache as a Cake Addin
#addin nuget:?package=Net.Cache&version=1.0.0

// Install Net.Cache as a Cake Tool
#tool nuget:?package=Net.Cache&version=1.0.0

Net.Cache

Overview

Net.Cache is a C# library designed to provide efficient and easy-to-use caching solutions for .NET applications. It offers a generic interface and a concrete implementation for caching values by key, ensuring quick data retrieval and improved performance.

Features

  • Generic Interface: IStorageProvider<TKey, TValue> allows for a flexible storage mechanism that can be adapted to various storage systems.
  • Cache Provider: CacheProvider<TKey, TValue> handles the caching logic, including storage and retrieval of values.
  • Extensibility: Easily extendable with custom storage providers.

Getting Started

To use Net.Cache in your project, follow these steps:

  1. Install the package via NuGet.
  2. Create an instance of CacheProvider, passing your storage provider and value factory function.
  3. Use the GetOrAdd and TryAdd methods to interact with the cache.

Example Usage

// Define your storage provider
IStorageProvider<string, int> storageProvider = new YourStorageProvider();

// Create a CacheProvider instance
var cache = new CacheProvider<string, int>(storageProvider, key => ComputeValue(key));

// Retrieve or add value to cache
int value = cache.GetOrAdd("myKey");

// Add value to cache
bool added = cache.TryAdd("newKey", 42);
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 (1)

Showing the top 1 NuGet packages that depend on Net.Cache:

Package Downloads
Net.Cache.DynamoDb

Net.Cache.DynamoDb is a specialized extension of the Net.Cache library, providing an abstract base class for DynamoDB storage providers.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.2 343 5/17/2024
1.3.1 171 3/20/2024
1.3.0 538 3/19/2024
1.1.0 784 1/15/2024
1.0.0 273 12/4/2023