Re: Post processing to get around TooManyClauses?

2007-12-11 Thread d33mb33
Ok I'm still struggling with this and a QueryFilter didn't help me one bit :-( I'm trying to query for books by "Charles Dickens" that start with "m". I have constructed a QueryFilter for the author search and a PrefixQuery for the title search. A simplified version of my code is below. '

Re: Post processing to get around TooManyClauses?

2007-12-07 Thread d33mb33
Erick Erickson wrote: > > Have you looked at Filters? Essentially, you construct a bitmap where each > bit corresponds to a document and pass that along into your search. > Constructing a filter is surprisingly speedy. > Thanks for the reply.. I'll take a look at filters. So in my "Charles Di

Post processing to get around TooManyClauses?

2007-12-07 Thread d33mb33
I have developed a fuzzy search application over a database of books (titles, authors etc) and it works really well. (I use Lucene.Net but read the JavaDocs and forums for java Lucene) However I've got an interesting use case with "TooManyClauses" and need some help in solving it. My users acce