forked from cakephp/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
translation orm behaviors counter-cache
- Loading branch information
1 parent
a528eeb
commit 67ecc4a
Showing
1 changed file
with
86 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,94 @@ | ||
CounterCache Behavior | ||
##################### | ||
CounterCache | ||
############ | ||
|
||
.. php:namespace:: Cake\ORM\Behavior | ||
.. php:class:: CounterCacheBehavior | ||
多くの場合、Webアプリケーションは関連するオブジェクトの数を表示する必要があります。 | ||
たとえば、記事のリストを表示するときに、記事のコメントの数を表示することができます。 | ||
または、ユーザーを表示するときに、彼女が持っている友人/フォロワーの数を表示することもできます。 | ||
CounterCacheビヘイビアは、これらの状況を想定しています。 | ||
CounterCacheは、呼び出されたときにオプションで割り当てられた関連モデルのフィールドを更新します。 | ||
フィールドはデータベースに存在し、INT型でなければなりません。 | ||
|
||
基本的な使用方法 | ||
================ | ||
|
||
他のビヘイビアと同様にCounterCacheビヘイビアを有効にしますが、 | ||
いくつかのリレーションとそれらのそれぞれに格納されるフィールド数を設定するまでは何も行いません。 | ||
以下の例を使用して、各記事のコメント数を次のようにキャッシュすることができます:: | ||
|
||
class CommentsTable extends Table | ||
{ | ||
public function initialize(array $config) | ||
{ | ||
$this->addBehavior('CounterCache', [ | ||
'Articles' => ['comment_count'] | ||
]); | ||
} | ||
} | ||
|
||
CounterCacheの設定は、リレーション名のマップとそのリレーションに対する具体的な設定でなければなりません。 | ||
|
||
カウンタの値は、エンティティが保存または削除されるたびに更新されます。 | ||
``updateAll()`` または ``deleteAll()`` を使用するか、作成したSQLを実行すると、カウンタは更新 **されません。** | ||
|
||
高度な使用方法 | ||
============== | ||
|
||
キャッシュされたカウンタを関連するすべてのレコードより少なく保つ必要がある場合は、 | ||
カウンタ値を生成するために追加の条件またはファインダメソッドを指定できます。:: | ||
|
||
// 特定のfindメソッドを使用する。 | ||
// find(published)の場合 | ||
$this->addBehavior('CounterCache', [ | ||
'Articles' => [ | ||
'comment_count' => [ | ||
'finder' => 'published' | ||
] | ||
] | ||
]); | ||
|
||
カスタムファインダメソッドがない場合は、代わりにレコードを検索するための条件の配列を指定できます。:: | ||
|
||
$this->addBehavior('CounterCache', [ | ||
'Articles' => [ | ||
'comment_count' => [ | ||
'conditions' => ['Comments.spam' => false] | ||
] | ||
] | ||
]); | ||
|
||
CounterCacheで複数のフィールドを更新する場合(条件付きカウントと基本カウントの両方を表示するなど)、 | ||
これらのフィールドを配列に追加できます。:: | ||
|
||
$this->addBehavior('CounterCache', [ | ||
'Articles' => ['comment_count', | ||
'published_comment_count' => [ | ||
'finder' => 'published' | ||
] | ||
] | ||
]); | ||
|
||
最後に、カスタムファインダと条件が適切でない場合は、コールバックメソッドを提供することができます。 | ||
この呼び出し可能オブジェクトは、格納するカウント値を返さなければなりません:: | ||
|
||
$this->addBehavior('CounterCache', [ | ||
'Articles' => [ | ||
'rating_avg' => function ($event, $entity, $table) { | ||
return 4.5; | ||
} | ||
] | ||
]); | ||
|
||
|
||
.. note:: | ||
The documentation is not currently supported in Japanese language for this | ||
page. | ||
|
||
Please feel free to send us a pull request on | ||
`Github <https://github.com/cakephp/docs>`_ or use the **Improve This Doc** | ||
button to directly propose your changes. | ||
CounterCacheビヘイビアは、 ``belongsTo`` アソシエーションに対してのみ機能します。 | ||
たとえば、 "Comments belongsTo Articles"の場合、Articleテーブルの ``comment_count`` を生成するために、 | ||
CommentsCacheビヘイビアを ``CommentsTable`` に追加する必要があります。 | ||
|
||
You can refer to the English version in the select top menu to have | ||
information about this page's topic. | ||
これを ``belongsToMany`` アソシエーションに対して機能させることは可能ですが、 | ||
アソシエーションオプションで設定されたカスタム ``through`` テーブルでCounterCacheビヘイビアを有効にする必要があります。 | ||
カスタムJOINテーブルを設定する方法は :ref:`using-the-through-option` を参照してください。 |