Skip to content

Instantly share code, notes, and snippets.

@weboAp
Created July 18, 2018 20:30
Show Gist options
  • Save weboAp/150522e562a6f761143ea5c020a24204 to your computer and use it in GitHub Desktop.
Save weboAp/150522e562a6f761143ea5c020a24204 to your computer and use it in GitHub Desktop.
MySQL persistent mode
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
'options' => [
\PDO::ATTR_PERSISTENT => true
]
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment