We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Query::each()
Query::each() returns data reader to get data row by row.
foreach ($query->each() as $row) {}
Current realization of the data reader reads batch of rows then read each row from the rows.
db/src/Query/BatchQueryResult.php
Lines 70 to 85 in e380ae2
If read the result of query row by row (instead of batch of rows), this will be more efficient and will use less memory.
The text was updated successfully, but these errors were encountered:
Tigrov
No branches or pull requests
Query::each()
returns data reader to get data row by row.Current realization of the data reader reads batch of rows then read each row from the rows.
db/src/Query/BatchQueryResult.php
Lines 70 to 85 in e380ae2
If read the result of query row by row (instead of batch of rows), this will be more efficient and will use less memory.
The text was updated successfully, but these errors were encountered: