I wanted to add also that I index it tokenized and that when I use Luke to
do this search, it gives the correct results.

Should I run the query differntly than the way I do?

2009/4/16 liat oren <oren.l...@gmail.com>

>  Hi,
>
> I try to understand why the following query gives the scoring below:
>
> document 1 : a b c document 2 : g k a h u c
>
>
> 0.0 = (NON-MATCH) product of:
>   0.0 = (NON-MATCH) sum of:
>   0.0 = coord(0/3)
> 0.06155877
>
> The query code is:
>    IndexSearcher searcher = new IndexSearcher(path);
>    Analyzer analyzer = new StandardAnalyzer();
>    QueryParser parser = new QueryParser("text", analyzer);
>    Query query = parser.parse("g k a h u c");
>    Hits hits = searcher.search(query);
> I also tried the WhiteSpaceAnalyzer.
>
> Why does it give me "no match"?
> doesn't if have to do "or" on each of the letters "g k a h u c"?
>
> Thanks,
> Liat
>
>
>
>

Reply via email to