Sphinx Search
Handler for Sphinx API Client. It contains most used functions to setup field weights, filter, sorting and multi-quering., (*1)
Tested on Sphinx Server 2.1.9 / 2.2.4 and sphinx PECL package 1.3.2., (*2)
Requirements
This package requires PHP 5.4., (*3)
Installation
The best way to install this package is using Composer, (*4)
$ composer require "rikiless/sphinx-search:@dev"
Nette Framework
If you are using Nette Framework you can simply register service:, (*5)
sphinx:
host: localhost
port: 9312
services:
- Rikiless\Sphinx\Search(%sphinx%)
In presenter:, (*6)
class Presenter ...
{
/** @var Rikiless\Sphinx\Search @inject */
public $fulltextSearch;
}
Use
Examples
Simple query:, (*7)
$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:, (*8)
$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
- http://sphinxsearch.com
- http://php.net/manual/en/book.sphinx.php
- http://sphinxsearch.com/wiki/doku.php?id=php_api_docs
- http://pecl.php.net/package/sphinx