2014-01-08 134 views
0

我在(http://norvig.com/big.txt)文件中搜索。並且搜索結果不會返回。在大文檔中搜索

正在搜索「the」和「terms」。我什麼都沒有回來。

下面是該查詢:

var res = client.Search<Post>(f => f.Query(q => q.Term(z => z.Content, "the"))); 

當我通過索引瀏覽,我可以查看文檔,但搜索是行不通的。

會是什麼原因?

回答

0

如果在編制索引時尚未指定分析儀,則使用standard分析儀。它刪除了stopwords,如and,in,the等。

+0

好的,但其他關鍵字也不起作用。 – DarthVader

+0

是搜索詞區分大小寫? – DarthVader