yii2优化 - 开启 Schema 缓存
yii2 2020-07-10 19:27:03

开启 Schema 缓存

Schema 缓存是一个特殊的缓存功能,每当你使用活动记录时应该要开启这个缓存功能。如你所知, 活动记录能智能检测数据库对象的集合(例如列名、列类型、约束)而不需要手动地描述它们。活动记录是通过执行额外的SQL查询来获得该信息。 通过启用 Schema 缓存,检索到的数据库对象的集合将被保存在缓存中并在将来的请求中重用。

 

 

PHP Code复制内容到剪贴板
  1. return [  
  2.     // ...  
  3.     'components' => [  
  4.         // ...  
  5.         'cache' => [  
  6.             'class' => 'yii\caching\FileCache',  
  7.         ],  
  8.         'db' => [  
  9.             'class' => 'yii\db\Connection',  
  10.             'dsn' => 'mysql:host=localhost;dbname=mydatabase',  
  11.             'username' => 'root',  
  12.             'password' => '',  
  13.             'enableSchemaCache' => true,  
  14.   
  15.             // Duration of schema cache.  
  16.             'schemaCacheDuration' => 3600,  
  17.   
  18.             // Name of the cache component used to store schema information  
  19.             'schemaCache' => 'cache',  
  20.         ],  
  21.     ],  
  22. ];  

 

需要注意的是,如果修改数据结构,在更新完SQL语句之后需要先关闭Schema再开启,数据结构的修改才会生效。

清一下 cache 也行

command 里提供了现成的命令

php yii cache/flush-schema 

 

 

 

本文来自于:http://www.yoyo88.cn/study/yii2/524.html

Powered by yoyo苏ICP备15045725号