yii2-ssdb ¶
Yii2-ssdb - a Yii 2.0 SSDB extension
Requirements ¶
Yii 2.0 or above
Installation ¶
The preferred way to install this extension is through composer.
composer require 'ijackwu/yii2-ssdb:dev-master'
Configuration ¶
To use this extension, you have to configure the Connection class in your application configuration:
return [
//....
'components' => [
'redis' => [
'class' => 'ijackwu\ssdb\Connection',
'host' => 'localhost',
'port' => 8888,
],
]
];
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.