在終端執行 mysql -u root –p
登入資料後,通過執行 CREATE DATABASE mystudy CHARACTER SET utf8 COLLATE utf8_general_ci; 建立一個新的資料庫;
<?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 檔案夾中。
<?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'); } } ?>
第6步-現在,我們需要為user表建立模型。為了簡便起見,我們將使用GII程式碼生成工具。在瀏覽器中開啟 url: http://localhost:8080/index.php?r=gii 。
然後,點選 「Model generator」 下的 「Start」按鈕。 填寫表名(「user」)和模型類(「MyUser」),單擊「Preview」按鈕,最後點選 「Generate」 按鈕。
yii\caching\DbCache ? 使用一個資料庫表來儲存快取資料
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 擴充套件
get() ? 從快取中檢索指定鍵對應的資料值。如果資料值已過期/無效或者沒有找到值,則將返回 false
add() ? 如果該鍵沒有在快取記憶體中找到,則儲存到快取該鍵和對應的資料值
set() ? 儲存到快取的鍵識別對應資料值
multiGet() ? 從快取中使用指定多個鍵檢索對應多個資料值
multiAdd() ? 在快取記憶體中儲存多個資料值。每個項由一個鍵標識。如果一個鍵在快取中已經存在,則資料值將會被跳過。
multiSet() ? 在快取記憶體中儲存多個資料值。每個專案由一個鍵來標識
exists() ? 返回在快取指定鍵是否找到對應值
flush() ? 從快取中刪除所有的資料值
delete() ? 通過從快取中的關鍵識別移除對應資料值
yii\caching\DbDependency ? 如果指定SQL語句的查詢結果發生改變,依賴也會發生改變。
yii\caching\ChainedDependency ? 如果鏈上的依賴關係發生改變,依賴也會改變。
yii\caching\FileDependency ? 如果檔案的最後修改時間發生改變,依賴也會改變。
yii\caching\ExpressionDependency ? 如果指定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; ?>
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); }
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()); }
yii cache ? 顯示可用快取元件
yii cache/flush cache1 cache2 cache3 ?重新整理快取元件:cache1,cache2 和 cache3
yii cache/flush-all ? 重新整理所有快取元件