yiisoft/yii2-sphinx

Sphinx full text search engine extension for the Yii framework

Fund package maintenance!
Open Collective
yiisoft
Tidelift

Installs: 751 119

Dependents: 7

Suggesters: 2

Security: 0

Stars: 183

Watchers: 34

Forks: 72

Open Issues: 4

Type:yii2-extension

2.0.15 2022-11-18 17:10 UTC

README

68747470733a2f2f737068696e787365617263682e636f6d2f696d616765732f6c6f676f2e706e67

Sphinx Extension for Yii 2


This extension adds Sphinx full text search engine extension for the Yii framework 2.0. It supports all Sphinx features including Real-time Indexes.

For license information check the LICENSE-file.

Documentation is at docs/guide/README.md.

Latest Stable Version Total Downloads Build status

Requirements

At least Sphinx version 2.0 is required. However, in order to use all extension features, Sphinx version 2.2.3 or higher is required.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yiisoft/yii2-sphinx

or add

"yiisoft/yii2-sphinx": "~2.0.0"

to the require section of your composer.json.

Configuration

This extension interacts with Sphinx search daemon using MySQL protocol and SphinxQL query language. In order to setup Sphinx "searchd" to support MySQL protocol following configuration should be added:

searchd
{
    listen = localhost:9306:mysql41
    ...
}

To use this extension, simply add the following code in your application configuration:

return [
    //....
    'components' => [
        'sphinx' => [
            'class' => 'yii\sphinx\Connection',
            'dsn' => 'mysql:host=127.0.0.1;port=9306;',
            'username' => '',
            'password' => '',
        ],
    ],
];