Net.Cache.DynamoDb
1.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Net.Cache.DynamoDb --version 1.0.0
NuGet\Install-Package Net.Cache.DynamoDb -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.DynamoDb" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Net.Cache.DynamoDb" Version="1.0.0" />
<PackageReference Include="Net.Cache.DynamoDb" />
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 Net.Cache.DynamoDb --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Net.Cache.DynamoDb, 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.
#:package Net.Cache.DynamoDb@1.0.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=Net.Cache.DynamoDb&version=1.0.0
#tool nuget:?package=Net.Cache.DynamoDb&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Net.Cache.DynamoDb
Overview
Net.Cache.DynamoDb is a specialized extension of the Net.Cache library, providing an abstract base class for DynamoDB storage providers. It's specifically designed for applications that use Amazon DynamoDB as a backend storage for caching.
Features
- DynamoDB Integration: Seamlessly integrates with Amazon DynamoDB for efficient storage and retrieval.
- Abstract Base Class:
AbstractDynamoDbStorageProvider<TKey, TValue>allows for easy implementation of custom DynamoDB storage logic. - Flexibility: Can be customized to suit various key-value storage requirements with DynamoDB.
Getting Started
To use Net.Cache.DynamoDb in your project, follow these steps:
- Install the package via NuGet.
- Implement
AbstractDynamoDbStorageProviderwith your key and value types. - Use this implementation with
CacheProviderfrom Net.Cache for caching.
Example Usage
public class MyDynamoDbStorageProvider : AbstractDynamoDbStorageProvider<string, MyObject>
{
public MyDynamoDbStorageProvider() : base("MyDynamoDbTable") {}
public override void Store(string key, MyObject value) { /* Implementation */ }
public override bool TryGetValue(string key, out MyObject value) { /* Implementation */ }
}
// Usage with CacheProvider
var dynamoDbStorageProvider = new MyDynamoDbStorageProvider();
var cache = new CacheProvider<string, MyObject>(dynamoDbStorageProvider, key => new MyObject());
// Retrieve or add value to cache
MyObject value = cache.GetOrAdd("myKey");
| Product | Versions 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. 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.
-
net6.0
- AWSSDK.DynamoDBv2 (>= 3.7.300.10)
- Net.Cache (>= 1.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Net.Cache.DynamoDb:
| Package | Downloads |
|---|---|
|
Net.Cache.DynamoDb.ERC20
A specialized extension of `Net.Cache.DynamoDb` package, for caching ERC20 token information in Amazon DynamoDB. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.0.2 | 665 | 9/25/2025 |
| 2.0.1 | 352 | 9/24/2025 |
| 2.0.0 | 329 | 8/8/2025 |
| 1.3.10 | 1,087 | 7/22/2025 |
| 1.3.9 | 574 | 7/21/2025 |
| 1.3.7 | 288 | 7/16/2025 |
| 1.3.6 | 262 | 7/16/2025 |
| 1.3.5 | 2,446 | 8/20/2024 |
| 1.3.4 | 465 | 7/10/2024 |
| 1.3.1 | 1,599 | 3/20/2024 |
| 1.3.0 | 1,931 | 3/19/2024 |
| 1.2.2 | 1,723 | 2/9/2024 |
| 1.2.1 | 1,866 | 2/8/2024 |
| 1.2.0 | 293 | 2/7/2024 |
| 1.1.0 | 262 | 1/15/2024 |
| 1.0.0 | 392 | 12/4/2023 |