Skip to main content

Search Results for "chunk"

We found 11 results for "chunk".

Tutorial 3 min read Free

Process big DB table with chunk() method

Let's imagine the situation: you have a big database table (like 10 000 rows or bigger) and you need to run an update to one column. But you cannot run just SQL query - there is some PHP logic behind it. So foreach loop could potentially take forever or bump into a default 30-second script limit. Luckily, Laravel has a neat solution for it.