bellows/pvc
最新稳定版本:v0.1.0
Composer 安装命令:
composer require bellows/pvc
包简介
Used to facilitate easy batch processing by creating data pipelines
README 文档
README
This PHP library should be used to optimize batched data flow. It was created with the idea with reducing the number of round trips to and from a database or web api.
Collect:
PVC is built with batches in mind. If reduction in round trips is what you need, then you need to make your payload bigger. Instead of querying an api one record at a time, PVC makes it easier to group objects for a payload
# Batch operations of 40 $pipeline = new \Pvc\Pipeline; $pipeline->collect(40, function($batch) { echo "Batch size: ".count($batch)."\n"; }); for ($i = 0; $i < 100; $i++) { $pipeline->push($i); } $pipeline->flush(); // Batch size: 40 // Batch size: 40 // Batch size: 20
Branch
If you have data that needs to be split into more than one pathway, PVC can help.
# Branched batches $pipeline = new \Pvc\Pipeline; $pipeline ->branch('switch', function($datum) { return $datum['type']; }) // the second argument is always the path this data took ->collect(30, function($data, $path) { echo "For type ".$path['switch'].": ".count($data)." records\n"; }); $type = 0; for ($i = 0; $i < 100; $i++) { $pipeline->push(['type' => ($type++) % 3, 'id' => $i ]); }; $pipeline->flush(); // For type 0: 30 // For type 1: 30 // For type 2: 30 // For type 0: 4 // For type 1: 3 // For type 2: 3
Transform
Transforming data mid way may be useful for your application, so PVC provides a transform operation, which allows you to change the data mid-stream.
$pipeline = new \Pvc\Pipeline; $pipeline->transform(function($data) use (&$lookupTable) { return $lookupTable[$data->getId()]; });
Filter
You can filter out undesirable or irrelevant data with the use of the filter operation.
$pipeline = new \Pvc\Pipeline; $pipeline->filter(function($data) use (&$lookupTable) { return $data instanceof GoodData; });
Expand
The opposite of collect. When the data in your stream is an array, expand will iterate over that array and make subsequent operations treat that data
统计信息
- 总下载量: 2.46k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-25