[ 
https://issues.apache.org/jira/browse/LUCENENET-523?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13663845#comment-13663845
 ] 

Simon Svensson commented on LUCENENET-523:
------------------------------------------

Can you provide us with a failing nunit test case, or a simple console 
application, that contains both indexes content and fails to search within the 
indexed content? Or perhaps a small console application that shows us the error?

It still sounds like you're using the default stop-words when indexing.
                
> StandardAnalyzer StopWords cannot be used
> -----------------------------------------
>
>                 Key: LUCENENET-523
>                 URL: https://issues.apache.org/jira/browse/LUCENENET-523
>             Project: Lucene.Net
>          Issue Type: Bug
>            Reporter: Phinehas
>
> When set the stop words list to empty set, it stills stop the english stop 
> words such as "of", "the". But I want to search these common words in phrase 
> query.
> StandardAnalyzer analyzer = new StandardAnalyzer(Version.LUCENE_30, 
> CharArraySet.EMPTY_SET);
>             IndexSearcher searcher = new 
> IndexSearcher(FSDirectory.Open(indexDirectory)); 
>             Lucene.Net.Index.IndexReader indexReader = 
> Lucene.Net.Index.IndexReader.Open(FSDirectory.Open(indexDirectory), true);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to