Используя Eloquent, как я могу прекратить порцию, основываясь на условии внутри chunk
закрытие функции? Я попытался вернуться, но это, кажется, завершает только текущий кусок, а не все куски. На этом этапе я хочу прекратить получать записи из базы данных.
$query->chunk(self::CHUNK_SIZE, function ($objects) {
if (someCondition) {
// terminate chunking here
return;
}
});
если ты return false
это сломается.
Если вы находитесь в do while
петля и return
все, что он выйдет из цикла. В исходном коде ниже вы можете увидеть:
if ($callback($results) === false) {
return false;
}
что дает вам возможность выйти.
/**
* Chunk the results of the query.
*
* @param int $count
* @param callable $callback
* @return bool
*/
public function chunk($count, callable $callback)
{
$this->enforceOrderBy();
$page = 1;
do {
// We'll execute the query for the given page and get the results. If there are
// no results we can just break and return from here. When there are results
// we will call the callback with the current chunk of these results here.
$results = $this->forPage($page, $count)->get();
$countResults = $results->count();
if ($countResults == 0) {
break;
}
// On each chunk result set, we will pass them to the callback and then let the
// developer take care of everything within the callback, which allows us to
// keep the memory low for spinning through large result sets for working.
if ($callback($results) === false) {
return false;
}
$page++;
} while ($countResults == $count);
return true;
}
https://github.com/laravel/framework/blob/5.4/src/Illuminate/Database/Concerns/BuildsQueries.php#L18
Других решений пока нет …