Yii2 sphinx api
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist schevgeny/sphinx "*"
or add
"schevgeny/sphinx": "*"
to the require section of your composer.json file.
Add component sphinx to config :
'components' => [
...
'sphinx' => [
'class' => 'schevgeny\sphinx\DGSphinxSearch',
'server' => 'SPHINX_SERVER_IP',
'port' => 3312,
'maxQueryTime' => 3000,
'enableProfiling'=>0,
'enableResultTrace'=>0,
'fieldWeights' => [
'name' => 10000,
'keywords' => 100,
],
],
]