RE: lucene 3.0.3 | phrase query problem

2011-02-11 Thread Zhang, Lisheng
Hi Kumar, 1) For your question in last mail: for tool luke, go to site http://www.getopt.org/luke/ and click "launch luke now", then pointing to your lucene data folder. Also the book "Lucene in Action" is a great source (go to .amazon.com and search this book) where everything (almost) is

Re: lucene 3.0.3 | phrase query problem

2011-02-10 Thread Anshum
Hi Ranjit, That would be because all stop words (space, comma, stop word set, etc..) would be treated in a similar fashion and escaped while indexing, subject to the analyzer you use while index your content. Hope that explains the issue. -- Anshum Gupta http://ai-cafe.blogspot.com On Thu, Feb 1

RE: lucene 3.0.3 | phrase query problem

2011-02-09 Thread Zhang, Lisheng
Hi, I think using Field.Index.NOT_ANALYZED means ignoring StandardAnalyzer, so we index "sql. server" as one word. You may use luke to see how this field is indexed. In this case we can only search whole term (without case change even), if using the StandardAnalyzer to analyze "sql. server" w