kymbrik
9/9/2017 - 8:32 AM

Looping through a large number of database rows in Yii2

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) {
    // ...
}