Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ネストされたモデル構造を持っています
id parent_id counter name
自動カウンタキャッシュの使用方法
関係定義で定義します。
<?php class YourModel extends AppModel { var $belongsTo = array( 'ParentModel' => array( 'foreignKey' => 'your_model_id', 'className' => 'ParentModel', 'counterCache' => 'counter' ) ) ); } ?>
「カウンター」は、カウントを含むテーブル内のフィールドです。