1
0
mirror of synced 2025-03-03 19:33:22 +03:00

Merge pull request #42 from rouffj/patch-1

Fix typo
This commit is contained in:
Guilherme Blanco 2011-08-24 09:32:11 -07:00
commit 35cb7b97db

View File

@ -2,7 +2,7 @@ Extra Lazy Associations
=======================
In many cases associations between entities can get pretty large. Even in a simple scenario like a blog.
where posts can be commented, you always have to assume that a post draws hundrets of comments.
where posts can be commented, you always have to assume that a post draws hundreds of comments.
In Doctrine 2.0 if you accessed an association it would always get loaded completly into memory. This
can lead to pretty serious performance problems, if your associations contain several hundrets or thousands
of entities.