I'm a huge fan of cakephp's containable element, because I always thought, that it would handle loading of additional models appropriate. But in the last days I dug deeper and found out, that there's really an memory issue.

Think of the following model structure:

  • Project has many Wall
  • Project has many Participant
  • Wall has many Post
  • Post has many Comment
  • Participant has many Post
  • Participant has many Comment
  • Participant belongs to User
  • Participant belongs to Project

and vice versa

  • Post belongs to Participant
  • Post belongs to Wall
  • Comment belongs to Participant
  • Comment belongs to Post
  • User has many Participant

In the wall-Controller I have following find-Statement:

$this->set(
  "posts", 
  $this->Post->find(
    "all", array(
      "conditions" => array("Post.wall_id" => $wall["Wall"]["id"]), 
      "contain" => array("Participant")
    )
  )
);

I would expect, that cakephp would find all posts and include only the corresponding participant-objects. But, what I get is a list of all Posts (correct) & their Participants (correct) but also of the corresponding Wall (incorrect) & the corresponding Comments, if available (incorrect). So from performance point of view: way too much objects, which can lead to a "FATAL ERROR - memory overload".

And for the, theoratically really sexy & interesting part:

$this->set(
  "posts", 
  $this->Post->find(
    "all", array(
      "conditions" => array("Post.wall_id" => $wall["Wall"]["id"]), 
      "contain" => array("Participant.User")
    )
  )
);

Because I'm only interested in the Post & Participant.User objects, I change the contain-array to Participant.User. But, again, now I'm getting not only the User object, but also all other related objects to the Participant (project, posts, comments, ...) and the object-tree is much bigger than before.

So I was wondering, what is the correct way to implement this? Do I need to explicitly set the "join" option or do I have to set the fields option (in the root or in the contain-option)?

Greets from Austria.

link|improve this question
seems like the contain is not working at all... just to check, have you added the containable behavior to your models? – pleasedontbelong Nov 15 '11 at 11:34
hi, sure, behavior is set in all models, but it makes no different, if I comment it out. – Johannes Nüx Nov 15 '11 at 11:48
You may also need to set recursive = -1 as your AppModel default. – Shaz Nov 15 '11 at 13:11
to set recursive in the AppModel makes no difference at all. :-( – Johannes Nüx Nov 15 '11 at 13:25
feedback

6 Answers

up vote 0 down vote accepted

I have been solving same problem and then I found that in some Model I set afterFind callback and within another SQL Query, which made mess in containable behaviour. So I suggest to rewrite inner queries in callbacks to plain SQL, helped for me and solved containable chaining.

link|improve this answer
I detected the same problem after removing everything else from the models. Unfortunately the afterFind functionality is poorly documented and I have no idea why other querys fire an unwanted behavior. – Johannes Nüx Jan 16 at 16:01
feedback

Theoretically, that should work fine. Make sure that you've set

var $actsAs = array('Containable');

on every model that you're referencing.

Edit: Looking more closely, perhaps not. Try the following...

$this->set(
  "posts", 
  $this->Post->find(
    "all", array(
      "conditions" => array("Post.wall_id" => $wall["Wall"]["id"]), 
      "contain" => array("Participant" => array("User"))
    )
  )
);
link|improve this answer
Hi Nathan, thx for your reply. Of course I have the actsAs containable in every model (but it make's no difference, if I comment it out). The mentioned change to the nested array was my first try, but does not change the described behavior at all. – Johannes Nüx Nov 15 '11 at 11:46
feedback

Does this tend to help:

$this->loadModel('Participant');
                $this->Participant->bindModel(array(
                    'belongsTo' => array(
                        'User' => array(
                            'className' => 'Wish',
                            'foreignKey' => 'user_id'
                        )
                    )
                ),0);
 $this->set(
  "posts", 
  $this->Post->find(
    "all", array(
      "conditions" => array("Post.wall_id" => $wall["Wall"]["id"]), 
      "contain" => false
    )
  )
);
link|improve this answer
feedback

I am using the ContainableBehaviour in one of my projects and it works exactly as expected even with a large number of relationships. I believe it is not working correctly in your case because of the following relationships:

  • Participant has many Post
  • Participant has many Comment
  • Participant belongs to Post
  • Participant belongs to Comment

Why does a Participant belong to a Post? Why does a Participant belong to a Comment?

Does contain work as expected when you get rid of those relationships?

If you need these all these relationships and have set up your HABTM relationship correctly. Check you this post which explains how to use the ContainableBehaviour with a HABTM relationship.

link|improve this answer
sorry for this, changed the vice versa relations to the correct implementations. Unfortunately, I copy pasted the relations in the wrong order. – Johannes Nüx Nov 15 '11 at 12:18
feedback

I never used the Dot Syntax. Did you try

"contain" => array('Participant'=>array('User'))

?

For me it looks like the containable behavior is somehow not attached, either. How did you attach/activate your behavior?

link|improve this answer
Hi mark, Tried the nested arrays syntax, but with same result. the containable is set in every model with $actsAs = array("Containable"); – Johannes Nüx Nov 15 '11 at 13:18
ok, try a debug($this->Model->attached('Containable')); does it return true? I think you are using containable on the wrong model."In the wall-Controller" => shouldnt you use $this->Wall->Post->... then? – mark Nov 15 '11 at 15:48
$this->Post->Behavior->attached("Containable") returns 1. And where's the difference between $this->Post or $this->Wall->Post? – Johannes Nüx Nov 15 '11 at 16:18
you shouldnt have $this->Post in your controller if you use correct Model chaining. – mark Nov 15 '11 at 20:18
For convenience issues, I include all models in app-controller $uses array. But removing the models from there and calling $this->Wall->Post->find(...) does not change anything in output too. – Johannes Nüx Nov 16 '11 at 11:27
show 2 more comments
feedback

Stop using Containable. It really generates too many queries. Use joins syntax. Take a look at this question and at the cookbook article.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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