Looping through a large number of database rows in Yii2
// fetch 10 rows at a time foreach(Posts::find()->select('content')->each(10) as $post) { // ... }