rikiless/sphinx-search

Simple handler to query sphinx search

0.9.4 2014-10-06 11:14 UTC

This package is not auto-updated.

Last update: 2024-03-16 13:10:37 UTC


README

Handler for Sphinx API Client. It contains most used functions to setup field weights, filter, sorting and multi-quering.

Tested on Sphinx Server 2.1.9 / 2.2.4 and sphinx PECL package 1.3.2.

Requirements

This package requires PHP 5.4.

Installation

The best way to install this package is using Composer

$ composer require "rikiless/sphinx-search:@dev"

Nette Framework

If you are using Nette Framework you can simply register service:

sphinx:
		host: localhost
		port: 9312

services:
	- Rikiless\Sphinx\Search(%sphinx%)

In presenter:

class Presenter ...
{

	/** @var Rikiless\Sphinx\Search @inject */
	public $fulltextSearch;

}

Use

Examples

Simple query:

$fulltext = new Rikiless\Sphinx\Search([
    'host' => 'localhost',
    'port' => 9312
]);

try {
 	/** @var Rikiless\Sphinx\Data $results */
    $results = $fulltext->query('search something');
	var_dump($results->getMatchesList());
	
} catch (Rikiless\Sphinx\Exception $e) {
    print $e->getMessage();
}

Multiple queries with basic setup:

$search = 'search something';

$this->fulltextSearch->setIndex('myindex');
$this->fulltextSearch->setLogComment(sprintf('Fulltext query on %s', $this->domain));
$this->fulltextSearch->setFieldWeights([
    'name' => 10,
	'content' => 5,
	'subject_name' => 3,
	'city' => 2,
	'contact_person' => 2
]);

$this->fulltextSearch->resetFilters();
$this->fulltextSearch->setFilterRange('position', 0, 19999999);
$this->fulltextSearch->addQuery($search);

$this->fulltextSearch->resetFilters();
$this->fulltextSearch->setFilterRange('position', 20000000, 29999999);
$this->fulltextSearch->addQuery($search);

try {
    $results = $this->fulltextSearch->runQueries();
} catch (Rikiless\Sphinx\Exception $e) {
    print $e->getMessage();
}

foreach ($results as $row) {
	/** @var Rikiless\Sphinx\Data $row */
	var_dump($row->getMatches());
}

Sources