Schema缓存是一个比较特殊的缓存,只有当我们使用活动记录是这个缓存才会生效。
什么是活动记录
活动记录能智能检测数据库对象的集合(例如列名、列类型、约束)而不需要手动地描述它们。活动记录是通过执行额外的SQL查询来获得该信息。 通过启用 Schema 缓存,检索到的数据库对象的集合将被保存在缓存中并在将来的请求中重用。
Schema缓存开启的方法:
要开启Schema缓存,需要配置一个cache应用组件来储存Schema信息,并在配置中设置 yii\db\Connection::enableSchemaCache 为true:
return [ // ... 'components' => [ // ... 'cache' => [ 'class' => 'yii\caching\MemCache', //配置缓存组件,这里用了memcache ], 'db' => [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=localhost;dbname=mydatabase', 'username' => 'root', 'password' => '', 'enableSchemaCache' => true, //开启schema缓存 // Duration of schema cache. 'schemaCacheDuration' => 3600, //有效时间 // Name of the cache component used to store schema information 'schemaCache' => 'cache', ], ], ];
需要注意的是
1、若是修改了数据表的结构,或者添加,删除了字段,都需要将enableSchemaCache设置为false之后才能生效。
2、查询语句时若是使用了asArray(),schema缓存是无效的。