From 495ffd3c3763dcdf3421bb592baaffd2e50a23d5 Mon Sep 17 00:00:00 2001 From: MAPD Date: Tue, 9 Jan 2024 18:59:53 +0900 Subject: [PATCH] =?UTF-8?q?eloquent=20=EC=BB=A4=EC=84=9C=20=EC=84=A4?= =?UTF-8?q?=EB=AA=85=20=EC=A4=91=20=EC=96=B4=EC=83=89=ED=95=9C=20=EB=B6=80?= =?UTF-8?q?=EB=B6=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kr/eloquent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kr/eloquent.md b/kr/eloquent.md index 831b9d442..a83e0dd95 100644 --- a/kr/eloquent.md +++ b/kr/eloquent.md @@ -684,7 +684,7 @@ Similar to the `lazy` method, the `cursor` method may be used to significantly r The `cursor` method will only execute a single database query; however, the individual Eloquent models will not be hydrated until they are actually iterated over. Therefore, only one Eloquent model is kept in memory at any given time while iterating over the cursor. -`cursor` 메소드는 단일 데이터베이스 쿼리만 실행합니다. 그러나 개별 Eloquent 모델은 실제로 반복될 때까지 수화되지 않습니다. 따라서 커서를 반복하는 동안 주어진 시간에 하나의 Eloquent 모델만 메모리에 유지됩니다. +`cursor` 메소드는 단일 데이터베이스 쿼리만 실행합니다. 그러나 개별 Eloquent 모델은 실제로 반복될 때까지 생성되지 않습니다. 따라서 커서를 반복하는 동안 주어진 시간에 하나의 Eloquent 모델만 메모리에 유지됩니다. > **Warning** > Since the `cursor` method only ever holds a single Eloquent model in memory at a time, it cannot eager load relationships. If you need to eager load relationships, consider using [the `lazy` method](#chunking-using-lazy-collections) instead.