Giter VIP home page Giter VIP logo

reducer's Introduction

reducer

map and reduce functions for large array (1M+ rows) in PHP7 extension.

Build Status PHP 7 ready

Scenario

After quering N+ dataset from multiple data source (workers, queues, relational database like mysql or No-SQL database like mongodb) you can efficiently aggregate the data sets in the PHP runtime from the client side.

Current Status

  • Version: 0.9.3
  • Quality: stable
  • API: alpha

Synopsis

$rows = [
    [ 'category' => 'Food', 'type' => 'pasta', 'amount' => 1, 'foo' => 10 ],
    [ 'category' => 'Food', 'type' => 'pasta', 'amount' => 1 ],
    [ 'category' => 'Food', 'type' => 'juice', 'amount' => 1 ],
    [ 'category' => 'Food', 'type' => 'juice', 'amount' => 1 ],
    [ 'category' => 'Book', 'type' => 'programming', 'amount' => 5 ],
    [ 'category' => 'Book', 'type' => 'programming', 'amount' => 2 ],
    [ 'category' => 'Book', 'type' => 'cooking', 'amount' => 6 ],
    [ 'category' => 'Book', 'type' => 'cooking', 'amount' => 2 ],
];
$result = group_by($rows, ['category','type'], [
    'total_amount' => [
        'selector' => 'amount',
        'aggregator' => REDUCER_AGGR_SUM,
    ],
    'cnt' => REDUCER_AGGR_COUNT,
]);
print_r($result);

The equivaient SQL query:

SELECT SUM(amount) as total_amount, COUNT(*) as cnt FROM table;

How Does It Work?

The group_by function compiles the aggregator definition into a plain C structure object for optimizing the aggregator iteration speed. (instead of iterating PHP asssoc array in pure PHP).

It then groups the rows by the given fields. Finally, use the compiled aggregators to aggregate the result.

Aggregators

Here is the syntax for defining aggregators:

[
    '{alias}' => [
        'selector' => '{selector}',
        'aggregator' => {constant | function},
    ],
    '{alias}' => {constant | function},
]

Built-in Aggregators

  • REDUCER_AGGR_SUM
  • REDUCER_AGGR_COUNT
  • REDUCER_AGGR_MIN
  • REDUCER_AGGR_MAX
  • REDUCER_AGGR_AVG
  • REDUCER_AGGR_FIRST
  • REDUCER_AGGR_LAST
  • REDUCER_AGGR_GROUP

Aggregating data with custom user function

Aggregating with custom reduce function:

$ret = group_by($rows, ['category','type'], [
    'amount' => function($carry, $current) {
        return $carry + $current;
    }
]);

Aggregating with selector:

$result = group_by($rows, ['category','type'], [
    'total_amount' => [
        'selector'   => 'amount',
        'aggregator' => function($carry, $current) { return $carry + $current; }
    ],
]);

Benchmark

Rows(N) PHP Extension Memory
100,000 264ms 98ms 50MB
1,000,000 2,862ms 565ms 438MB

Install

$ phpize
$ ./configure --enable-reducer
$ make install

License

© 2017-01-01 Yo-an Lin ALL RIGHTS RESERVED

reducer's People

Contributors

c9s avatar rodrigohahn avatar

Stargazers

Zigao Wang avatar Amaury Garcia avatar 南無假行僧 avatar Fathy AR avatar shark99 avatar  avatar German Gabriel avatar Lucas Mendes avatar ahmadhasyim avatar Chun-Ping (Jeremy) Chang avatar Samuel Jie avatar Luka Huang avatar haubar avatar Isaac Huang avatar Benyi avatar Chun-Sheng, Li avatar Chiao F avatar babooppa6 avatar  avatar Jing Xun Lai avatar Lish avatar LeoWang avatar Imagine avatar mouson avatar  avatar  avatar JacketWu avatar

Watchers

 avatar Chun-Ping (Jeremy) Chang avatar FENG Hao avatar James Cloos avatar German Gabriel avatar Bill Tanthowi Jauhari avatar LeoWang avatar  avatar

reducer's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.