From 90b51ff06a8f01347a9a45a0d39583037af7d461 Mon Sep 17 00:00:00 2001 From: MaximAL Date: Fri, 30 Jun 2017 18:00:32 +0300 Subject: [PATCH] Schema cache options (for production environment) (#129) [skip ci] --- config/db.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/db.php b/config/db.php index c4c1252..bc75e61 100644 --- a/config/db.php +++ b/config/db.php @@ -6,4 +6,9 @@ return [ 'username' => 'root', 'password' => '', 'charset' => 'utf8', + + // Schema cache options (for production environment) + //'enableSchemaCache' => true, + //'schemaCacheDuration' => 60, + //'schemaCache' => 'cache', ];