schema cache這個在生產環境中需要配置快取
在db.php 中配置:
return [
'class' => 'yii\db\connection',
'dsn' => 'mysql:host=127.0.0.1;dbname=jeulia_erp2',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'enableschemacache' => true,
// duration of schema cache.
'schemacacheduration' => 3600,
// name of the cache component used to store schema information
'schemacache' => 'cache',
];
rbac dbmanger 快取
啟用dbmanger後,系統會更具許可權複雜度的不同產生非常多的查詢,這個時候可以根據需要在配置檔案中新增許可權快取可以很好的減少這些查詢請求
'authmanager' => [
'class' => 'yii\rbac\dbmanager',
'cache' => 'cache'
],
Yii2 配置yii2 redis擴充套件
前提 已經安裝redis。一 包檔案安裝 yiisoft yii2 redis extentions.php然後配置vender yiisoft extensions.php檔案 yiisoft yii2 redis array name yiisoft yii2 redis version 2.0...
Yii2 配置yii2 redis擴充套件
前提 已經安裝redis。一 包檔案安裝 yiisoft yii2 redis extentions.php 然後配置vender yiisoft extensions.php檔案 yiisoft yii2 redis array name yiisoft yii2 redis version 2....
Yii2 模組巢狀配置
在yii2 中模組是可以無限級巢狀的,也就是說,模組可以包含另乙個包含模組的模組,我們稱前者為父模組,後者為子模組,子模組必須在父模組的yiibasemodule modules屬性中申明,例如 在yii2的advanced版本的rest api下建立巢狀模組,在forum模組 父模組 下嵌入adm...