Is it even possible to fetch database in memory-efficient way with Eloquent, row by row? I remember looking for this at some point a while ago and not finding any way to do that.
@Snapey I'm not talking about having a new query for each row. I'm talking about fetching row-by-row, like with old mysql_fetch_XXX functions. So the engine would return one record at a time and move the cursor instead of returning all results at once.