来自tutorial section about exact phrase queries:
例如,以下内容将查找包含“java”或“coffee shop”的所有文档:
db.stores.find( { $text: { $search: "java \"coffee shop\"" } } )
然而,当我运行它时,它只返回一个名为" Coffee Shop"的商店。为什么不用" java"返回两个文件?在他们的name
字段中:" Java Hut"和#34; Java Shopping",你是insert
在the beginning of the example?