在php中使用Sphinx

6 篇文章 0 订阅

要使用php连接Sphinx进行全文搜索,有两种方式

  1. 将Sphinx作为php扩展安装,这种方式比较麻烦,此处不介绍
  2. 在Sphinx源码目录下的有个api/sphinxapi.php,将此文件reqire到你的php中,即可调用api方法进行全文搜索

php调用示例

<?php
require('sphinxapi.php');

$sphinx = new SphinxClient();
$sphinx->SetServer('localhost',9312);
$sphinx->SetMatchMode(SPH_MATCH_ANY);
$sphinx->SetArrayResult ( true );
$res = $sphinx->Query($_GET['key'],'*');
print_r($res);

数据

idcontentcreatetime
1hello world2016-11-11 00:36:23
2php is greater than others2016-11-10 00:36:59
3sphinx search php2016-11-11 10:01:50


在以上数据中中查询hello php,结果如下:

查询结果

Array
(
    [error] => 
    [warning] => 
    [status] => 0
    [fields] => Array
        (
            [0] => content
            [1] => createtime
        )

    [attrs] => Array
        (
        )

    [matches] => Array
        (
            [0] => Array
                (
                    [id] => 1 //查询到的文档ID
                    [weight] => 1
                    [attrs] => Array
                        (
                        )

                )

            [1] => Array
                (
                    [id] => 2 //查询到的文档ID
                    [weight] => 1
                    [attrs] => Array
                        (
                        )

                )

            [2] => Array
                (
                    [id] => 3 //查询到的文档ID
                    [weight] => 1
                    [attrs] => Array
                        (
                        )

                )

        )

    [total] => 3
    [total_found] => 3
    [time] => 0.000
    [words] => Array
        (
            [hello] => Array
                (
                    [docs] => 1 //命中文档数
                    [hits] => 1 //命中次数
                )

            [php] => Array
                (
                    [docs] => 2 //命中文档数
                    [hits] => 2 //命中次数
                )

        )

)

php:Sphinx文档

php+Sphinx更多API使用方法,请参考官方文档:

http://www.php.net/manual/zh/book.sphinx.php

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值