mkubenka / yii2-db-reconnect
Yii2 DB Auto Reconnect
Installs: 18 112
Dependents: 1
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires (Dev)
- phpunit/phpunit: ~6.3.1
- yiisoft/yii2: ~2.0.12
This package is not auto-updated.
Last update: 2025-03-30 05:22:48 UTC
README
Inspired by:
Installation
composer require mkubenka/yii2-db-reconnect
or
"require": { "mkubenka/yii2-db-reconnect": "~1.0" },
Configuration
'db' => [ 'class' => 'mkubenka\dbreconnect\mysql\Connection', 'reconnectMaxCount' => 2, 'dsn' => 'mysql:host=127.0.0.1;dbname=test', 'username' => 'root', 'password' => '', 'charset' => 'utf8', ],
Logging
'log' => [ 'targets' => [ [ 'class' => 'yii\log\FileTarget', 'levels' => ['error', 'info'], 'maxLogFiles' => 20, 'maxFileSize' => 2048, 'categories' => [ 'mkubenka\dbreconnect\*', ], 'logFile' => '@frontend/runtime/logs/dbreconnect.log', ], ], ],
Known limitations
This method only works for non transactional statements.