Browse Source

Merge pull request #8565 from cakephp/orm-docs

Add info about installing cakehp/cache package.
José Lorenzo Rodríguez 10 years ago
parent
commit
1fa97f2820
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/ORM/README.md

+ 2 - 1
src/ORM/README.md

@@ -28,7 +28,8 @@ ConnectionManager::config('default', [
 	'driver' => 'Cake\Database\Driver\Mysql',
 	'database' => 'test',
 	'username' => 'root',
-	'password' => 'secret'
+	'password' => 'secret',
+	'cacheMetaData' => false // If set to `true` you need to install the optional "cakephp/cache" package.
 ]);
 ```