Just out of the blue I wonder if the following way of iterating through a result set using generator will cause any positive or negative impact against normal iteration?
eg.
def all_items_generator():
for item in Item.objects.all():
yield item
for item in all_items_generator():
do_stuff_with_item(item)
against:
for item in Item.objects.all():
do_stuff_with_item(item)