Re: searching for the part of a term.

2006-09-27 Thread heritrix . lucene
Hi, Thanks for yor reply.. : Since the overhead in first is the speed of the system, i think adopting : second method will be better. Since iMy index size is around 10GB the second method is also taking a lot of time for queries like "am". One more things that i found in http://www.gossame

Re: searching for the part of a term.

2006-09-26 Thread Chris Hostetter
: Since the overhead in first is the speed of the system, i think adopting : second method will be better. : : Is there any other solution for this problem?? Am i going in right : direction?? you're definitely on teh right path -- those are the two bigsolutions i can think of, which appraoch you

Re: searching for the part of a term.

2006-09-26 Thread heritrix . lucene
Hi, While i was searching forum for my problem for searching a substring, i got few very good links. http://www.gossamer-threads.com/lists/lucene/java-user/39753?search_string=Bitset%20filter;#39753 http://www.gossamer-threads.com/lists/lucene/java-user/7813?search_string=substring;#7813 http://w

searching for the part of a term.

2006-09-23 Thread heritrix . lucene
Hi All, How can i make my search so that if i am looking for the term "counting" the documents containing "accounting" must also come up. Similarly if i am looking for term "workload", document s containing work also come up as a search result. Wildcard query seems to work in the first case, bu