I have a field member_count on my countries table.

Profile belongsTo Country

counterCache => 'member_count',
counterScope => array( 'Profile.country => 'US' )

So, when a user runs a save on $this->User->Profile->save( $this->data), i would like to update the counterCache in Country.

Possible?

link|improve this question

did you try it? – mark Jun 7 '11 at 16:37
Yes, I did try it many different ways. – Barry Chapman Jun 7 '11 at 21:34
feedback

2 Answers

up vote 0 down vote accepted

Barry its not listed as an option on a hasMany relationship in the documentation

I suppose you could cache a view with the results of the countries and their number of profiles to save you some performance as an alternative.

link|improve this answer
feedback

Please have another look in the documentation to make sure, you did everything right.

Your Profile-Model should look like this:

function Profile extends AppModel {
    $name = 'Profile';
    var $belongsTo = array(
        'Country' => array(
            'counterCache' => 'member_count'
        )
    );
}
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.