rrd108/data-mixer
Composer 安装命令:
composer require rrd108/data-mixer
包简介
A simple tool to create test data from existing database by mixing records
README 文档
README
A simple PHP tool to create test data from existing database by mixing records.
Sometimes you want to test your application with the same amount of data what you have in your production enviroment. This script reads your exisiting data and mix its content.
Installation
composer --require-dev rrd108/data-mixer
Usage
-
Create a backup of your production data and copy it to your development enviroment. NEVER use this tool in production, as you can accidently mix your data. NO RESTORE, NO UNDO, NO CANCEL method, what is mixed once, can not be reverted without a backup.
-
Create a new object in your code. DataMixer accepts the same arguments as PDO.
$dataMixer = new DataMixer('mysql:dbname=test;host=localhost', 'user', 'superSecret'); -
Define your selected fields to be mixed in the
$fieldsvariable. -
Get your mixed data and modify it if you want.
$mixed = $dataMixer->getMixed($table, $fields); -
Update your records in tha database. This will actually update your database, so be careful, NO RESTORE, NO UNDO, NO CANCEL method.
$dataMixer->updateRows($mixed);
$fields array
The fields defined in $fields array will be mixed.
Simple mixing
$fields = ['first_name', 'last_name'];
In this case in the $table database table all records' first_name and last_name values will be mixed randomly. All other table fields will be unchaned.
Let's say we have the following starter table.
| id | first_name | last_name | passport_number | sex |
|---|---|---|---|---|
| 1 | John | Doe | 123456789AA | M |
| 2 | Jane | Gauranga | 987456789AA | F |
| 3 | Trevor | Davis | 985631458ZZ | M |
The simple mixing may give us the following result
| id | first_name | last_name | passport_number | sex |
|---|---|---|---|---|
| 1 | Jane | Davis | 123456789AA | M |
| 2 | John | Gauranga | 987456789AA | F |
| 3 | Trevor | Doe | 985631458ZZ | M |
You can see the names are mixed, but all other data (passport_number and sex) is unchanged.
Dependent mixing
$fields = [ ['first_name' => 'sex'], 'last_name' ];
In this case in the $table database table all records' first_name and last_name values will be mixed randomly like in simple mixing, but first_name set to be dependent on the value of the sex field. It means on mixing the script will only select first names from other records where the value of the sex field is the same.
The dependent mixing may give us the following result from the same starter table
| id | first_name | last_name | passport_number | sex |
|---|---|---|---|---|
| 1 | Trevor | Gauranga | 123456789AA | M |
| 2 | Jane | Doe | 987456789AA | F |
| 3 | John | Davis | 985631458ZZ | M |
As we had only one female in our table and first_name is dependent on sex, there was nobody to mix with the first name. That is why Jane kept her first name.
CLI Usage
The package can be used as a shell script.
$ vendor/bin/datamixer
The script will ask the PDO dsn string, username and password for connecting to the database, than the table name and the fileds array.
The fileds array shoud be define like this:
first_name => sex, last_name
rrd108/data-mixer 适用场景与选型建议
rrd108/data-mixer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 10 次下载、GitHub Stars 达 0, 最近一次更新时间为 2017 年 12 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 rrd108/data-mixer 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rrd108/data-mixer 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 10
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-12-02