Computer >> Computer tutorials >  >> Programming >> ruby

Mastering Ruby's Loop Control: redo, retry, and next Explained

We've talked about the retry keyword while discussing retrying after exceptions. Its little-known counterpart redo works similarly, but re-runs loop iterations instead of whole blocks.

The redo keyword

As we learned in the previous Academy article, retry lets you retry a piece of code in a block:


This example prints the word "Iteration" to the console before raising an exception. The rescue blocks executes, which calls retry and starts the block again from the beginning. This results in our program endlessly printing Iteration. The redo keyword lets you achieve a similar effect when using loops. This is useful in situations where you need to retry while iterating for example.


This will print:

Notice how the iteration count stays the same? It will step back execution to the start of the loop. This variant of the code using retry will print the exact same output:


You can use redo to implement retrying in a loop. In the next example we have a queue of jobs. They either return :success or :failure. We keep re-running the same iteration of the loop until the job succeeds.


The next keyword

If you want to move to the next iteration of the loop, as opposed to moving back to the start of the current one, you can use next.


This will print:

See how the iteration counter keeps incrementing? In most cases using next is what you want. Look at redo if you need a loop that runs an exact number of times or needs error handling when iterating over an array.

We hope you learned something new about redoing iterations in loops and would love to know what you thought of this article (or any of the other ones in the AppSignal Academy series). Please don't hesitate to let us know what you think, or if you have any Ruby subjects you'd like to learn more about.

Mastering Ruby s Loop Control: redo, retry, and next Explained

Thijs Cadier

Chief Technology Officer & Co-Founder. Thijs sometimes goes missing for months on end to work on our infrastructure. Makes sure our billions of requests are handled correctly. Best drummer of the company.

All articles by Thijs Cadier