我正在尝试搜索我的收藏中的文本字段。这是我的收藏中的示例文档:
{
"_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
}
关于为什么每次都得到一个空白结果数组的任何想法?
提前感谢您的帮助!
森
答案 0 :(得分: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
。
答案 1 :(得分:0)
您的代码上嵌套引号('the'string literal):
$search_results = $db->command(array('text' => 'trending', 'search' => '"the"'));
尝试不嵌套引号
$search_results = $db->command(array('text' => 'trending', 'search' => 'the'));