hareku/laravel-bulk
Composer 安装命令:
composer require hareku/laravel-bulk
包简介
The Laravel package for bulk insert/update.
README 文档
README
laravel-bulk provides functions that execute bulk insert/update.
Packagist: https://packagist.org/packages/hareku/laravel-bulk
Installation
Composer: composer require hareku/laravel-bulk.
Usage
EloquentBulk
EloquentBulk provides bulk functions for Eloquent models.
use Hareku\Bulk\Facades\EloquentBulk; // \Illuminate\Database\Eloquent\Model $model = new \App\Models\User; $columns = ['name', 'age']; $records = [ ['john', 22], ['james', 23], ]; // EloquentBulk automatically resolves the table name, // and fills `created_at` and `updated_at` columns. EloquentBulk::insert($model, $columns, $records); dump(User::all()); // [ // { // id: 1, // name: john, // age: 22, // created_at: 2020-01-01 12:00:00, // updated_at: 2020-01-01 12:00:00 // }, // { // id: 2, // name: james, // age: 23, // created_at: 2020-01-01 12:00:00, // updated_at: 2020-01-01 12:00:00 // }, // ] $indices = ['id']; // each record must have indices for sql's WHERE conditions. $newRecords = [ [ 'id' => 1, 'name' => 'new_john', 'age' => 25, ], [ 'id' => 2, 'name' => 'new_james', ], ]; EloquentBulk::update($model, $indices, $newRecords); dump(User::all()); // [ // { // id: 1, // name: new_john, // age: 25, // created_at: 2020-01-01 12:00:00, // updated_at: 2020-12-01 12:00:00 // }, // { // id: 2, // name: new_james, // age: 23, // created_at: 2020-01-01 12:00:00, // updated_at: 2020-12-01 12:00:00 // }, // ]
BulkProcessor
BulkProcessor provides functions without Eloquent features (auto resolving table names, and filling timestamp columns).
So you have to give the table name.
use Hareku\Bulk\Facades\BulkProcessor; BulkProcessor::insert($tableName, $columns, $records); BulkProcessor::update($tableName, $indices, $records);
Contribution
Please open an issue or a pull request.
Local development
You can develop on VSCode remote container that already installed PHP and other dependencies. Otherwise, you have to install PHP and composer to the local, or run tests on Github Actions.
- Install dependencies:
composer install - Test with PHPUnit:
composer test - Test with PHPUnit and Xdebug coverage:
composer test:coverage-textorcomposer test:coverage-html
hareku/laravel-bulk 适用场景与选型建议
hareku/laravel-bulk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 497 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 03 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 hareku/laravel-bulk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hareku/laravel-bulk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 497
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-03-06