Memory usage is something that we as developers have to be aware of. Ever debugging a memory issue and find that your once small dataset has ballooned out of proportion? And instead of dealing with the issue, you opt for upping the memory limit? Iterators can be the answer but they require a lot of code and can be very difficult to understand at a glance. Thankfully since PHP 5.5 Generators help us create and manage what would be complex iterators with simple syntax sugar. In this talk I will go over some of the ways you can implement generators and cure your memory bloat.

Comments

Comments are closed.

Roger Creasy at 06:13 on 17 Aug 2018

Great talk! Very good explanation of a somewhat complex topic. There is a ton of knowledge crammed into this 45 minute talk. But, Korvin did a terrific job presenting and explaining it. I learned much.

Julian Canepa at 13:22 on 17 Aug 2018

Solid talk. Props to Korvin for live programming, his demo really cemented the concepts for me. I can't wait to find places to apply the principles he introduced.