承接 algoyounes/idempotency 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

algoyounes/idempotency

Composer 安装命令:

composer require algoyounes/idempotency

包简介

Laravel Idempotency Middleware package to prevent duplicate requests

README 文档

README

Laravel Idempotency Logo
Idempotency

Build Status Total Downloads Latest Stable Version License

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 idempotency middleware 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-Key header 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 我们能提供哪些服务?
定制开发 / 二次开发

基于 algoyounes/idempotency 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 208
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 25
  • 点击次数: 33
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 25
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-06-02