Created
December 14, 2016 07:32
-
-
Save marionzualo/e597464390b0fcb41012fa237e128b92 to your computer and use it in GitHub Desktop.
Fibers second example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def process_batch(batch) | |
p batch | |
end | |
# this method runs in a background job | |
def complex_operation_in_background | |
find_in_batches do |batch| | |
# the complex operation on the given batch | |
process_batch(batch) | |
end | |
end | |
# Execution in the terminal | |
# >> complex_operation_in_background | |
# ["Vhils", "AKACORLEONE"] | |
# ["Pixel Pancho", "+-"] | |
# ["Kruella D'Enfer", "Tamara Alves"] | |
# ["Add Fuel", "MAR"] | |
# ["Eime", "Bordalo II"] | |
# ["Felipe Pantone", "Ernest Zacharevic"] | |
# ["Wasted Rita", "Sainer"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment