Ots for Yii 2
This extension provides the ots integration for the Yii framework 2.0.
It includes basic querying/search support and also implements the ActiveRecord
pattern that allows you to store active
records in elasticsearch., (*1)
For license information check the LICENSE-file., (*2)
Documentation is at docs/guide/README.md., (*3)
Installation
The preferred way to install this extension is through composer., (*4)
Either run, (*5)
php composer.phar require --prefer-dist sabercoding/yii2-ots
to the require section of your composer.json., (*6)
Configuration
To use this extension, you have to configure the Connection class in your application configuration:, (*7)
return [
//....
'components' => [
'ots' => [
'EndPoint' => '',
'AccessKeyID' => '',
'AccessKeySecret' => '',
'InstanceName' => '',
'DebugLogHandler' => '',
'ConnectionTimeout' => '',
'SocketTimeout' => '',
'ErrorLogHandler' => '',
],
]
];