Istanbul.ApiIdempotency
1.0.5
dotnet add package Istanbul.ApiIdempotency --version 1.0.5
NuGet\Install-Package Istanbul.ApiIdempotency -Version 1.0.5
<PackageReference Include="Istanbul.ApiIdempotency" Version="1.0.5" />
paket add Istanbul.ApiIdempotency --version 1.0.5
#r "nuget: Istanbul.ApiIdempotency, 1.0.5"
// Install Istanbul.ApiIdempotency as a Cake Addin #addin nuget:?package=Istanbul.ApiIdempotency&version=1.0.5 // Install Istanbul.ApiIdempotency as a Cake Tool #tool nuget:?package=Istanbul.ApiIdempotency&version=1.0.5
About Istanbul.ApiIdempotency
<img alt="GitHub Workflow Status (branch)" src="https://img.shields.io/github/workflow/status/tanjuyayak/Istanbul.ApiIdempotency/BuildApp/main?style=plastic">
What is Idempotency?
Idempotency is a term given to certain operations in mathematics and computer science. In mathematics, it can be seen when we multiply any number by 1. It doesn’t matter how many times we perform this operation the result will be always same.
It is also very important concept in computer science. Idempotency concept is allowing you to retry a request multiple times while only performing the action once. Let's imagine that you have an api which is responsible for accepting payments for a specific order. From client application perspective there are many situations (timeouts, network issues, application failures, bugs and even clicking "complete" button more than one time) which might require safely retrying the same operation with the guarantee that the operation will only be executed once.
How It Works?
<img src="https://github.com/tanjuyayak/Istanbul.ApiIdempotency/blob/main/img/apiidempotencydiagram.png" width="100%">
Getting Started
Istanbul.ApiIdempotency is a .net package which focuses on helping developers to implement this concept easily to their applications. Package is supporting Redis as data store at the moment but it also allows you to extend it and work with some other data stores. Implementation for other data stores is in my roadmap.
Installation
You can install Istanbul.ApiIdempotency with NuGet:
Install-Package Istanbul.ApiIdempotency
Install-Package Istanbul.ApiIdempotency.Redis.StackExchange
Or via the .NET command line interface:
dotnet add package Istanbul.ApiIdempotency
dotnet add package Istanbul.ApiIdempotency.Redis.StackExchange
Sample application Istanbul.ApiIdempotency.Sample is available under repository.
Usage
Package is designed to work with different data stores and it supports Redis at the moment. There are different Redis c# drivers available in order to connect and use Redis so I decided to provide different idempotency data store packages for different Redis drivers.
First version of RedisApiIdempotencyDataStoreProvider supports StackExchange driver so that's why it accepts IConnectionMultiplexer as constructor parameter. You are free to configure IConnectionMultiplexer as you wish.
Configure settings:
var redisConnectionMultiplexer = ConnectionMultiplexer.Connect("localhost");
services.AddApiIdempotency(options =>
{
options.IdempotencyHeaderKey = "X-Idempotency-Key";
options.IdempotencyDataStoreProvider = new RedisApiIdempotencyDataStoreProvider(redisConnectionMultiplexer);
});
Use idempotency:
app.UseApiIdempotency();
Activate idempotency with 20 seconds of timeout:
[HttpPost]
[Route("api/[controller]/create")]
[ApiIdempotency(20)]
public IActionResult Create()
{
return Ok(new { OrderCreationDate = DateTime.Now });
}
Roadmap
- Creating basic idempotency package
- Nuget availability
- Auto generated idempotency keys
- Allowing project to provide key (not only from request header)
- Supporting more data stores
- Couchbase
- Memcached
See the open issues for a full list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue. Don't forget to give the project a star 😄
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE
for more information.
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. |
-
net6.0
- Istanbul.ApiIdempotency.Core (>= 1.0.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.