But why then does it find all the querries in the 1st file? I use exactly the 
same code.

IZ


-----Original Message-----
From: Uwe Schindler [mailto:u...@thetaphi.de] 
Sent: Friday, July 13, 2012 12:32 PM
To: java-user@lucene.apache.org
Subject: RE: can't find queries when they are one per line in target file

> String qStr = "Query1"; // or "Query2" or ...
> QueryParser parser = ...;
> IndexSearcher searcher = ...;
> Query query = parser.parse(qStr);
> TopDocs results = searcher.search(query, Integer.MAX_VALUE); ScoreDoc[]
hits
> = results.scoreDocs;
> 
> returned no hits for the 2nd test.

Maybe because it runs out of memory? Passing Integer.MAX_VALUE is allocating
2 billion result slots...

Uwe


---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to