Yii快取


快取是提高應用程式效能的一個有效途徑。
快取機制儲存靜態資料在快取中,需要時就會從快取讀取得到它。在伺服器端可以使用快取來儲存基本資料,如最近的新聞列表。
還可以將頁面片段或整個網頁快取。
在用戶端,可以使用HTTP快取儲存最近存取過的網頁在瀏覽器快取。

準備資料庫

第1步 - 建立一個新的資料庫。資料庫可以通過以下兩種方式進行。
  • 在終端執行 mysql -u root –p

  • 登入資料後,通過執行 CREATE DATABASE mystudy CHARACTER SET utf8 COLLATE utf8_general_ci; 建立一個新的資料庫;

第2步 - 在 config/db.php 檔案中組態資料庫連線。下面的組態可根據自己的實際情況組態。
<?php
   return [
      'class' => 'yii\db\Connection',
      'dsn' => 'mysql:host = localhost;dbname = mystudy',
      'username' => 'root',
      'password' => '',
      'charset' => 'utf8',
   ];
?>

第3步 - 在專案根檔案夾執行:yii migrate/create test_table 。此命令將用於建立管理資料庫資料庫遷移。 migrations檔案會出現在專案的根的 migrations 檔案夾中。
Yii數據Widgets

第4步 - 修改遷移檔案(在本範例中生成的是:m160529_014611_test_table.php),並使用以下這些程式碼。
<?php
   use yii\db\Schema;
   use yii\db\Migration;
   class m160529_014611_test_table extends Migration {
      public function up() {
         $this->createTable("user", [
            "id" => Schema::TYPE_PK,
            "name" => Schema::TYPE_STRING,
            "email" => Schema::TYPE_STRING,
         ]);
         $this->batchInsert("user", ["name", "email"], [
            ["User1", "[email protected]"],
            ["User2", "[email protected]"],
            ["User3", "[email protected]"],
            ["User4", "[email protected]"],
            ["User5", "[email protected]"],
            ["User6", "[email protected]"],
            ["User7", "[email protected]"],
            ["User8", "[email protected]"],
            ["User9", "[email protected]"],
            ["User10", "[email protected]"],
            ["User11", "[email protected]"],
         ]);
      }
      public function down() {
         //$this->dropTable('user');
      }
   }
?>
上述遷移建立使用者表,它包含了以下這些欄位:id, name, 和 email。它還增加了一些演示使用者帳號。
第5步 - 在專案的根目錄內執行: yii migrate  來遷移應用到資料庫。執行結果如下圖所示:

第6步-現在,我們需要為user表建立模型。為了簡便起見,我們將使用GII程式碼生成工具。在瀏覽器中開啟 url: http://localhost:8080/index.php?r=gii 。
然後,點選 「Model generator」 下的 「Start」按鈕。 填寫表名(「user」)和模型類(「MyUser」),單擊「Preview」按鈕,最後點選 「Generate」 按鈕。



MyUser 檔案憶經生成在 models 目錄。

資料快取

資料快取可在快取中儲存 PHP 變數方便以後檢索。
資料快取依賴於快取記憶體部件,其通常註冊為應用程式元件。
要存取應用程式元件,可以呼叫 Yii::$app->cache。
可以註冊多個快取應用程式元件。
Yii 支援以下快取記憶體儲存器 -
  • yii\caching\DbCache ? 使用一個資料庫表來儲存快取資料

    在yii\caching\DbCache::$cacheTable 必須指定建立一個表
  • yii\caching\ApcCache ? 使用 PHP APC 擴充套件

  • yii\caching\FileCache ? 使用檔案來儲存快取資料

  • yii\caching\DummyCache ? 作為快取記憶體占位其中確實沒有真正的快取

    這個元件的目的是為了簡化檢查高速緩衝儲存器的可用性的程式碼。
  • yii\caching\MemCache ? 使用 PHP memcache 擴充套件

  • yii\caching\WinCache ? 使用PHP WinCache 擴充套件

  • yii\redis\Cache ? 實現了基於Redis的資料庫快取元件

  • yii\caching\XCache ?使用 PHP XCache 擴充套件

所有快取元件支援下列API -
  • get() ? 從快取中檢索指定鍵對應的資料值。如果資料值已過期/無效或者沒有找到值,則將返回 false

  • add() ? 如果該鍵沒有在快取記憶體中找到,則儲存到快取該鍵和對應的資料值

  • set() ? 儲存到快取的鍵識別對應資料值

  • multiGet() ? 從快取中使用指定多個鍵檢索對應多個資料值

  • multiAdd() ? 在快取記憶體中儲存多個資料值。每個項由一個鍵標識。如果一個鍵在快取中已經存在,則資料值將會被跳過。

  • multiSet() ? 在快取記憶體中儲存多個資料值。每個專案由一個鍵來標識

  • exists() ? 返回在快取指定鍵是否找到對應值

  • flush() ? 從快取中刪除所有的資料值

  • delete() ? 通過從快取中的關鍵識別移除對應資料值

除非儲存在快取中的資料值被刪除,否則它將永遠存在。可以呼叫 set()方法在儲存資料值時,設定過期引數。
快取的資料值也可以因快取記憶體相關性的變化而變成無效 -
  • yii\caching\DbDependency ? 如果指定SQL語句的查詢結果發生改變,依賴也會發生改變。

  • yii\caching\ChainedDependency ? 如果鏈上的依賴關係發生改變,依賴也會改變。

  • yii\caching\FileDependency ? 如果檔案的最後修改時間發生改變,依賴也會改變。

  • yii\caching\ExpressionDependency ? 如果指定PHP表示式的結果發生改變,依賴也會改變。

現在,新增 cache 快取應用元件到應用程式。
第1步 - 修改 conf/web.php 檔案如下:
<?php
   $params = require(__DIR__ . '/params.php');
   $config = [
      'id' => 'basic',
      'basePath' => dirname(__DIR__),
      'bootstrap' => ['log'],
      'components' => [
         'request' => [
            // !!! insert a secret key in the following (if it is empty) - this
               //is required by cookie validation
            'cookieValidationKey' => 'tw511.com',
         ],
         'cache' => [
            'class' => 'yii\caching\FileCache',
         ],
         'user' => [
            'identityClass' => 'app\models\User',
            'enableAutoLogin' => true,
         ],
         'errorHandler' => [
            'errorAction' => 'site/error',
         ],
         'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            // send all mails to a file by default. You have to set
            // 'useFileTransport' to false and configure a transport
            // for the mailer to send real emails.
            'useFileTransport' => true,
         ],
         'log' => [
            'traceLevel' => YII_DEBUG ? 3 : 0,
            'targets' => [
               [
                  'class' => 'yii\log\FileTarget',
                  'levels' => ['error', 'warning'],
               ],
            ],
         ],
         'db' => require(__DIR__ . '/db.php'),
      ],
      'modules' => [
         'admin' => [
            'class' => 'app\modules\admin\Admin',
         ],
      ],
      'params' => $params,
   ];
   if (YII_ENV_DEV) {
      // configuration adjustments for 'dev' environment
      $config['bootstrap'][] = 'debug';
      $config['modules']['debug'] = [
         'class' => 'yii\debug\Module',
      ];
      $config['bootstrap'][] = 'gii';
      $config['modules']['gii'] = [
         'class' => 'yii\gii\Module',
      ];
   }
   return $config;
?>
第2步 - 在控制器 SiteController 中新增一個新的 actionTestCache() 方法。
public function actionTestCache() {
   $cache = Yii::$app->cache;
   // try retrieving $data from cache
   $data = $cache->get("my_cached_data");
   if ($data === false) {
      // $data is not found in cache, calculate it from scratch
      $data = date("Y-m-d H:i:s");
      // store $data in cache so that it can be retrieved next time
      $cache->set("my_cached_data", $data, 30);
   }
   // $data is available here
   var_dump($data);
}
第3步 - 在Web瀏覽器的位址列存取:http://localhost:8080/index.php?r=site/test-cache ,將會看到以下內容。

第4步 - 如果重新載入頁面,應該注意到的日期沒有改變。日期值快取將在30秒內過期。 30秒後重新整理頁面。
Yii緩存

查詢快取

查詢快取為您提供快取資料庫查詢的結果。查詢快取需要一個資料庫連線和快取應用元件。
第1步 - 新增一個新的 actionQueryCaching()方法到 SiteController 控制器中。
public function actionQueryCaching() {
   $duration = 10;
   $result = MyUser::getDb()->cache(function ($db) {
      return MyUser::find()->count();
   }, $duration);
   var_dump($result);
   $user = new MyUser();
   $user->name = "cached user name";
   $user->email = "[email protected]";
   $user->save();
   echo "==========";
   var_dump(MyUser::find()->count());
}
在上面的程式碼,我們快取資料庫查詢,新增新的使用者並顯示使用者數。
第2步 - 開啟URL:http://localhost:8080/index.php?r=site/query-caching ,並重新載入頁面。

當我們第一次開啟該頁面,資料庫查詢會快取並顯示給所有使用者數。
當我們重新整理頁面,快取資料庫查詢的結果是相同的,這是因為資料庫查詢被快取過了。
也可以使用以下命令從控制台重新整理快取 -
  • yii cache ? 顯示可用快取元件

  • yii cache/flush cache1 cache2 cache3 ?重新整理快取元件:cache1,cache2 和 cache3 

  • yii cache/flush-all ? 重新整理所有快取元件

第3步 - 在應用程式的根目錄執行: yii cache/flush-all