We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using 5.5 using iterators is quicker than checking for values and mapping a single value for each tick in the loop.
This also makes it possible to just assume all values are mapped by wrapping the given iterator in a generator.
example went from ~30s to ~15s.
The text was updated successfully, but these errors were encountered:
ref: https://gist.github.com/henrikbjorn/fc09fec9cf4cea4ab085
Sorry, something went wrong.
To keep BC a MapperIterator have been introduced which wraps a Iterator and a Mapper and it is done transparently in MapReduce::run().
No branches or pull requests
When using 5.5 using iterators is quicker than checking for values and mapping a single value for each tick in the loop.
This also makes it possible to just assume all values are mapped by wrapping the given iterator in a generator.
example went from ~30s to ~15s.
The text was updated successfully, but these errors were encountered: