0

我正在尝试在我的收藏中搜索一个文本字段。这是我收藏中的一个示例文档:

{
    "_id" : ObjectId("51f9c432573906141dbc9996"),
    "id" : ObjectId("51f9c432573906141dbc9995"),
    "body" : "the",
    "rank" : 0,
    "num_comm" : 0,
    "activity" : 1375323186
}

这就是我正在寻找的方式......

$mongo = new MongoClient("mongodb://127.0.0.1");
$db = $mongo->requestry;

try
{
    $search_results = $db->command(array('text' => 'trending', 'search' => '"the"'));
}
catch (MongoCursorException $e)
{
    return array('error' => true, 'msg' => $e->getCode());
}

return array('error' => false, 'results' => $search_results);

这就是我得到的结果......

{
    error: false,
    results: {
        queryDebugString: "||||the||",
        language: "english",
        results: [ ],
        stats: {
            nscanned: 0,
            nscannedObjects: 0,
            n: 0,
            nfound: 0,
            timeMicros: 66
        },
        ok: 1
    }
}

以下是我对收藏的索引...

{
    "v" : 1,
    "key" : {
        "_id" : 1
    },
    "ns" : "requestry.trending",
    "name" : "_id_"
},
{
    "v" : 1,
    "key" : {
        "_fts" : "text",
        "_ftsx" : 1
    },
    "ns" : "requestry.trending",
    "name" : "body_text",
    "weights" : {
        "body" : 1
    },
    "default_language" : "english",
    "language_override" : "language",
    "textIndexVersion" : 1
}

关于为什么我每次都得到一个空白结果数组的任何想法?

提前感谢您的帮助!

弥敦道

4

2 回答 2

1

您不能搜索“the”,因为它是停用词,并且停用词不会被索引。您可以在https://github.com/mongodb/mongo/blob/master/src/mongo/db/fts/stop_words_english.txt找到停用词列表

您实际上可以在调试字符串中看到正在尝试匹配的内容:

queryDebugString: "||||the||"

这里的第一个元素是空的,这意味着没有匹配。如果你看看会发生什么'"cat" AND "purple"',调试字符串是:

queryDebugString: "cat|purpl||||cat|purple||"

第一个元素现在是cat|purpl- 这表明词干也已应用于purple.

于 2013-08-01T09:55:36.483 回答
0

您的代码上有嵌套引号('the' 字符串文字):

$search_results = $db->command(array('text' => 'trending', 'search' => '"the"'));

尽量不要嵌套引号

$search_results = $db->command(array('text' => 'trending', 'search' => 'the'));
于 2013-08-01T03:50:30.527 回答