NICTA / scoobi

A Scala productivity framework for Hadoop.
http://nicta.github.com/scoobi/
482 stars 97 forks source link

Add a method to create a DObject where the argument is lazily evaluated (on the cluster) #256

Closed etorreborre closed 11 years ago

blever commented 11 years ago

Updated the title ... @espringe - is that what you mean?

etorreborre commented 11 years ago

This has been implemented (10b4e28) as:

val o1 = lazyObject(someComputation)

and this actually relies on the ability to differ the evaluation of a sequence of elements:

val list = fromLazySeq(someOtherComputation)