-
Type: Bug
-
Resolution: Done
-
Priority: Major - P3
-
None
-
Affects Version/s: 2.4.8
-
Component/s: Text Search
-
Windows
I am using mongodb 2.4.8.
> db.thread_data.runCommand("text", {search : "all"});
{
"queryDebugString" : "||||||",
"language" : "english",
"results" : [ ],
"stats" :
,
"ok" : 1
}
-> thread_data is a collection, which is text indexed.
-> {search : "all"} here we are searching all the documents of thread_data where "all" word is present
-> In thread_data collection "all" word is present in the document but it is not present in the results.
-> From the documentation the search word will be in the "queryDebugString" of the output. but it is not happening.
- related to
-
SERVER-10062 Add user configurable stop word lists for text search
- Backlog