algoyounes/idempotency
Composer 安装命令:
composer require algoyounes/idempotency
包简介
Laravel Idempotency Middleware package to prevent duplicate requests
关键字:
README 文档
README
Idempotency is a Laravel package that helps you make your requests idempotent. Idempotent requests can be safely retried without causing any side effects. This is useful when you're dealing with unreliable networks or when you want to prevent duplicate requests from being processed.
Features ✨
- Idempotent Requests: Ensure that requests can be safely retried without side effects.
- Middleware Integration: Easily add
idempotencymiddleware to routes or route groups. - Customizable Cache: Configure cache TTL and store for idempotency keys.
- Duplicate Handling: Choose between replaying cached responses or throwing exceptions for duplicate requests.
- Custom Resolvers: Implement custom logic for resolving user IDs or generating cache keys.
- Header-Based Idempotency: Use the
Idempotency-Keyheader to identify requests. - Race Condition Handling: Prevent race conditions with configurable lock wait times.
- Unauthenticated Support: Define a default user ID name for unauthenticated requests.
Installation
You can install the package via Composer:
composer require algoyounes/idempotency
You can publish the configuration file using the following command:
php artisan vendor:publish --provider="AlgoYounes\Idempotency\Providers\IdempotencyServiceProvider" --tag="config"
Here are the available options in the configuration file:
| Option | Default Value | Description |
|---|---|---|
enable |
true |
Enable or disable the idempotency middleware |
cache.ttl |
86400 (1 Day) |
The time-to-live for idempotency keys in minutes |
cache.store |
default |
The cache store to use for idempotency keys |
idempotency_header |
Idempotency-Key |
The header to use for idempotency keys |
idempotency_relayed_header |
Idempotency-Relayed |
The header for relaying idempotency keys |
duplicate_handling |
replay |
The action to take when a duplicate request is detected. Options are replay or exception |
enforced_verbs |
['GET', 'POST', 'PUT', 'PATCH', 'DELETE'] |
The HTTP verbs to enforce idempotency on |
max_lock_wait_time |
10 (10 seconds) |
The maximum time to wait for a lock in seconds |
user_id_resolver |
null |
The user ID resolver to use for generating cache keys |
unauthenticated_user_id |
guest |
The default user ID name for unauthenticated requests |
Usage
To request idempotent, try adding something like idempotency middleware to the route or group of routes you want to protect. The middleware will check if the request is idempotent by looking for the Idempotency-Key header. If the header is present, the middleware will cache the response and reuse it for subsequent requests with the same key.
Route::middleware('idempotency')->post('/orders', 'OrderController@store');
You can also add the middleware to a group of routes:
Route::middleware('idempotency')->group(function () { Route::post('/orders', 'OrderController@store'); Route::get('/orders/{id}', 'OrderController@show'); });
Custom Resolver 🔧
You can create your resolver by implementing the Resolver interface.
This is useful when you want to store the cache in a different store or when you want to customize the key generation logic.
use AlgoYounes\Idempotency\Contracts\Resolver; class CustomUserIdResolver implements Resolver { public function resolve(): string { // Your custom logic here } } // In the configuration file 'user_id_resolver' => CustomUserIdResolver::class,
Contributing
Thank you for considering contributing to the Idempotency package. For more details, please check the CONTRIBUTING file.
License
The Idempotency package is open-sourced software licensed under the MIT license.
algoyounes/idempotency 适用场景与选型建议
algoyounes/idempotency 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 208 次下载、GitHub Stars 达 25, 最近一次更新时间为 2025 年 06 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「middleware」 「laravel」 「idempotency」 「laravel middleware」 「idempotent」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 algoyounes/idempotency 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 algoyounes/idempotency 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 algoyounes/idempotency 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Shoot aims to make providing data to your templates more manageable
A PSR-7 compatible library for making CRUD API endpoints
Slim Framework 3 CSRF protection middleware utilities
Cloudflare Middleware For Guzzle
PSR-15 middleware to handle CSRF-token verification
A simple HTTP application builder using PSR-15 HTTP Server Request Handler and Middleware.
统计信息
- 总下载量: 208
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 25
- 点击次数: 33
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-06-02
