Giter Site home page Giter Site logo

Comments (5)

josevalim avatar josevalim commented on July 3, 2024

I can do this but not earlier than 2 weeks, sorry. Ping me in case I forget.

from etl-language-comparison.

dimroc avatar dimroc commented on July 3, 2024

Ok, sounds good

from etl-language-comparison.

dimroc avatar dimroc commented on July 3, 2024

Ping @josevalim

from etl-language-comparison.

josevalim avatar josevalim commented on July 3, 2024

Sorry, I can't provide a full README but I don't want to hold this for any longer. So I will send some text and I hope you can complement it as you find more appropriate. Sorry for the delay!


The Elixir implementation has provides a mapreduce mix task that receives either "binary" or "regex" as argument. The argument chooses which module will do the mapping over each files. Once mapping is performed with each file in a different Elixir process, the result of the mapper is returned to a single reducer process which sums up all counts.

The "binary" argument chooses a BinaryMapActor which uses binary matches provided by the Erlang VM to lookup for matches. Because binary matches are not case insensitive, the first step of the mapper algorithm is to generate all permutations for the word being counted.

The "regex" argument chooses a RegexMapActor which uses regular expressions and are often slower than binary matches.

Generally speaking, both solutions could be further optimized although we believe the current code provides a good trade-off between clarity and performing more low-level optimizations. Other than that, we expect future Elixir versions to yield even better results. For example, Elixir 1.2 introduces support to large maps which will perform faster than HashDict.

from etl-language-comparison.

dimroc avatar dimroc commented on July 3, 2024

This will do just fine, thanks @josevalim

from etl-language-comparison.

Related Issues (8)

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.