emgiezet/sphinxsearch-bundle

Sphinx 搜索包用于 Symfony 2

安装: 451

依赖者: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 33

类型:symfony-bundle

1.2.2 2013-02-08 19:06 UTC

This package is auto-updated.

Last update: 2024-08-29 04:08:55 UTC


README

这是一个分支。包含更新的服务方法以覆盖更多 Sphinx API 功能。

安装

  1. 下载包
  2. 配置包

步骤 1: 下载包

您实际上如何下载包完全取决于您。最简单的方法是从 packagist.org 获取。

步骤 2: 配置包

sphinxsearch:
    indexes:
        Categories: %sphinxsearch_index_categories%
        Items:      %sphinxsearch_index_items%
    searchd:
        host:   %sphinxsearch_host%
        port:   %sphinxsearch_port%
        socket: %sphinxsearch_socket%
    indexer:
        bin:    %sphinxsearch_indexer_bin%

至少必须定义一个索引,您也可以定义尽可能多的索引。

在上面的示例配置中,使用 Categories 作为名为 %sphinxsearch_index_categories% 的索引的标签(如您的 sphinxsearch.conf 中定义)。这允许您在代码中避免硬编码原始索引名称。

使用示例

最基本搜索,使用上述配置作为示例,会是

$indexesToSearch = array('Items');
$sphinxSearch = $this->get('search.sphinxsearch.search');
$searchResults = $sphinxSearch->search('search query', $indexesToSearch);

这将针对索引标签 Items 进行 search query 搜索。搜索结果存储在 $searchResults 中。

您也可以执行更复杂的搜索,例如

$indexesToSearch = array('Items');
$options = array(
  'result_offset' => 0,
  'result_limit' => 25,
  'field_weights' => array(
    'Name' => 2,
    'SKU' => 3,
  ),
);
$sphinxSearch = $this->get('search.sphinxsearch.search');
$sphinxSearch->setMatchMode(SPH_MATCH_EXTENDED2);
$sphinxSearch->setFilter('disabled', array(1), true);
$searchResults = $sphinxSearch->search('search query', $indexesToSearch, $options);

这将再次针对 Items 搜索 search query,但现在它将只返回前 25 个匹配项,并将 NameSKU 字段的重要性高于正常。请注意,为了定义 result_offsetresult_limit,您必须显式定义这两个值。此外,此搜索将使用 扩展查询语法,并排除所有将 disabled 属性设置为 1 的结果。

许可证

Copyright (c) 2012, Ryan Rogers
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: 

1. Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer. 
2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution. 

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.