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.
For license information check the LICENSE-file.
Documentation is at docs/guide/README.md.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist sabercoding/yii2-ots
to the require section of your composer.json.
To use this extension, you have to configure the Connection class in your application configuration:
return [
//....
'components' => [
'ots' => [
'EndPoint' => '',
'AccessKeyID' => '',
'AccessKeySecret' => '',
'InstanceName' => '',
'DebugLogHandler' => '',
'ConnectionTimeout' => '',
'SocketTimeout' => '',
'ErrorLogHandler' => '',
],
]
];