RE: short search terms

2012-09-27 Thread Edward W. Rouse
You misread what I wrote. When it's ABC in the index and I search for ABC I get no match. But AFTER I change ABC to ABCD and search for ABCD, I get a match. > -Original Message- > From: Aditya [mailto:findbestopensou...@gmail.com] > Sent: Thursday, September 27, 2012 5:19 AM > To: java-use

Re: Memory issues with Lucene deployment

2012-09-27 Thread Paul Taylor
On 25/09/2012 20:09, Uwe Schindler wrote: Hi, Without a full output of "free -h" we cannot say anything. But the total Linux memory use should always used by 100% on a good server otherwise it's useless (because full memory includes cache usage, too). I think, -Xmx may be too less for your Jav

Re: short search terms

2012-09-27 Thread Aditya
Hi You are searching with 3 characters but the items actually indexed has 4 characters. Use Luke and analyze the index. If searching for ABC has to be matched with ABCD then you need to do a wildcard search. Add * at the end of the search query (ABC*). Regards Aditya www.findbestopensource.com