CakePHP 3 でのメモリ使用量削減
岩佐 孝浩
1 min read
CakePHP
この記事は、公開後3年以上が経過しています。
CakePHP 3 を使用して大量のレコードを処理する際には、高いメモリ使用量の問題に遭遇する可能性があります。 CakePHP 3 では、この問題を緩和するための設定が提供されています。
Result set objects will lazily load rows from the underlying prepared statement. By default results will be buffered in memory allowing you to iterate a result set multiple times, or cache and iterate the results. If you need work with a data set that does not fit into memory you can disable buffering on the query to stream results:
公式ドキュメントに記載されている通り、メモリ使用量を削減するには、以下のコードを追加してください。
$query->enableBufferResults(false);
// 3.4.0 or earlier
$query->bufferResults(false);