Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just finished to read all the documentation of Doctrine 2, I started my own sandbox, I understood most of the principes, but there is still a question and I couldn't find any complete explanation in the doc.

  1. What are the proxies classes?
  2. When should I use them over entities?

As far as I understand, proxies classes are just like, proxy, and add kind of a layer to let you add some other features for your entities, but why use a proxy instead of implementing the methods themselves in the entity class?

share|improve this question

2 Answers

Proxy objects are used whenever your query doesn't return all data required to create an entity. Imagine following scenario:

@Entity
class User {
     @Column protected $id;
     @Column protected $username;
     @Column protected $firstname;
     @Column protected $lastname;

     // bunch of setters/getters here
}

DQL query:

SELECT u.id, u.username FROM Entity\User u WHERE u.id = :id

As you can see this query doesn't return firstname and lastname properties, therefore you cannot create User object. Creation of incomplete entity could lead to unexpected errors.

That's why Doctrine will create UserProxy object that supports lazy loading. When you'll try to access firstname property (which is not loaded) it will first load that value from database.


I mean why should I use a proxy ?

You should always write your code as if you didn't use proxy objects at all. They can be treated as internal objects used by Doctrine.

Why the lazy loading can't be implemented in the Entitiy itself?

Technically it could be but take a look at some random proxy object's class. It's full of dirty code, ugh. It's nice to have a clean code in your entities.

Can you provide me an use case?

You're displaying a list of latest 25 articles and you want to display a details of the first one. Each of them contain a large amount of text, so fetching all that data would be a waste of memory. That's why you don't fetch unnecessary data.

SELECT a.title, a.createdAt
FROM Entity\Article a
ORDER BY a.createdAt DESC
LIMIT 25

$isFirst = true;
foreach ($articles as $article) {
    echo $article->getTitle();
    echo $article->getCreatedAt();

    if ($isFirst) {
        echo $article->getContent(); // Article::content is not loaded so it is transparently loaded 
                                     // for this single article.

        $isFirst = false;
    }
}
share|improve this answer
Thank you for your answer, in what it's different with Partial Object? I mean why should I use a proxy ? Why the lazy loading can't be implemented in the Entitiy itself ? Can you provide me an use case? – Jérémy Feb 8 '11 at 17:17
1  
Partial objects and proxy objects are the same thing - they can be treated as synonyms. As for the rest of questions check my updated answer. – Crozin Feb 8 '11 at 17:39
Thanks a lot for your answer, it's almost clear now! In fact, I don't have to edit Proxy classes unless I want to change the lazy-loading behavior or something like that. – Jérémy Feb 8 '11 at 18:01
1  
@sanders: Of course it can create incomplete entity, however it is unwanted from application perspective. Imagine you have User entity with id, username, email fields and you select only id and username. The entity is incomplete. What should happen if you call $user->getEmail() on such entity? Exception? You'll have to code that in every getter method. null? That would be confusing as user might have an email address. Load missing value from database? That's what proxy objects are for. – Crozin Jul 22 '11 at 14:28
show 1 more comment

Using Proxy Classes is called "lazy loading". Essentialy, it's better to NOT use this option (and it is mainly used for dev-environments purposes), because it generates additional traffic to DB.

If you fetch an object by ORM (=table in DB) which has a relation, and then try to reach this associated object's data also, ORM will generate two, not one, queries to DB. If it's crutial query to your web-app (say, on the main page), it will generate a lot of unnecessary traffic - 2x (+100%) more of SELECT commands instead of 1x. It's a waste and in this case Lazy Loading/Proxy Classes should be turned OFF.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.