rikiless/sphinx-search
Composer 安装命令:
composer require rikiless/sphinx-search
包简介
Simple handler to query sphinx search
README 文档
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
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-09-23