2017 © Pedro Peláez
 

library pvc

Used to facilitate easy batch processing by creating data pipelines

image

bellows/pvc

Used to facilitate easy batch processing by creating data pipelines

  • Tuesday, September 6, 2016
  • by oranj
  • Repository
  • 1 Watchers
  • 1 Stars
  • 612 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 5 % Grown

The README.md

PVC

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., (*1)

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, (*2)

# 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., (*3)

# 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., (*4)


$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., (*5)


$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, (*6)

The Versions

06/09 2016

dev-master

9999999-dev

Used to facilitate easy batch processing by creating data pipelines

  Sources   Download

MIT

06/09 2016

v0.0.3

0.0.3.0

Used to facilitate easy batch processing by creating data pipelines

  Sources   Download

MIT

29/08 2016

v0.0.2

0.0.2.0

Used to facilitate easy batch processing by creating data pipelines

  Sources   Download

MIT

25/08 2016

v0.0.1

0.0.1.0

Used to facilitate easy batch processing by creating data pipelines

  Sources   Download

MIT