订单关键字结果相关性

时间:2013-01-11 21:40:44

标签: php mysql sorting relevance

我创建了一个查询,根据用户创建的关键字从数据库中获取相当短的字符串(zhikharevanswer提供信用):

$searchArray = explode(' ', $search);
$searchNumber = count($searchArray);

$query = "SELECT * FROM tags WHERE tags.tag LIKE CONCAT('%',?,'%')" . 
    str_repeat(" OR tags.tag LIKE CONCAT('%',?,'%')", $searchNumber - 1);

$stmt = $mysqli -> prepare($query);
$bind_names[] = str_repeat('s', $searchNumber);

for ($i = 0; $i < count($searchArray); $i++){
    $bind_name = 'bind'.$i; /*generate a name for variable bind1, bind2, bind3...*/
    $$bind_name = $searchArray[$i]; /*create a variable with this name and put value in it*/
    $bind_names[] = & $$bind_name; /*put a link to this variable in array*/
}

call_user_func_array(array($stmt, 'bind_param'), &$bind_names);
$stmt -> execute();

我的问题是我不知道如何通过相关性对此结果进行排序。请注意,数据库中的一个标记可以包含多个单词。

假设用户搜索“纽约市”。然后在数据库中我有:

    New York
    York
    New York City
    New Zealand
    Kansas City

我希望结果如下:

    New York City
    New York
    New Zealand
    York
    Kansas City

它应该查找与用户输入中的单词匹配最多的标签,以及与搜索中单词顺序大致相同的单词顺序的标签。

1 个答案:

答案 0 :(得分:0)

这是Sphinx等独立全文搜索引擎的完美用例。我最近开始在一个项目中使用Sphinx,到目前为止我对此非常满意。它的索引非常快,我看到直接MySQL查询的速度提高了10倍。

启用星型模式将允许部分匹配: http://sphinxsearch.com/docs/2.0.6/conf-enable-star.html

它还允许各种排序方法: http://sphinxsearch.com/docs/2.0.6/sorting-modes.html

更多链接: http://sphinxsearch.com/docs/2.0.6/ http://php.net/manual/en/sphinx.examples.php