1<ul>
2<li><p>[[\yii\caching\ApcCache]]: uses PHP <a href="http://php.net/manual/en/book.apc.php">APC</a> extension. This option can be
3considered as the fastest one when dealing with cache for a centralized thick application (e.g. one
4server, no dedicated load balancers, etc.).</p>
5</li>
6<li><p>[[\yii\caching\DbCache]]: uses a database table to store cached data. By default, it will create and use a
7<a href="http://sqlite.org/">SQLite3</a> database under the runtime directory. You can explicitly specify a database for
8it to use by setting its <code>db</code> property.</p>
9</li>
10</ul>
11<ul>
12<li>[[yii\caching\Cache::get()|get()]]: 指定されたキーを用いてキャッシュからデータを取得します。データが見つからないか、もしくは有効期限が切れたり無効になったりしている場合は false を返します。</li>
13<li>[[yii\caching\Cache::set()|set()]]: キーによって識別されるデータをキャッシュに格納します。</li>
14</ul>
15