在線上環境中數據庫配置文件添加 enableSchemaCache
和 schemaCacheDuration
,示例以下:php
'components' => [ 'db' => [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=localhost;dbname=yii2advanced', 'username' => 'root', 'password' => 'root', 'charset' => 'utf8', 'tablePrefix' => 't_', 'enableSchemaCache' => true, 'schemaCacheDuration' => 0, ], // ... ],
注意:開啓這個以後,每次修改數據庫結構記得要刪除緩存文件!mysql
$ composer dumpautoload -o
修改入口文件 web/index.php
,禁用調試模式web
defined('YII_DEBUG') or define('YII_DEBUG', false);