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?