Re: Term frequencies within a search

2009-05-22 Thread Robert Young
r for > all docs that matched the query? > > Mike > > On Thu, May 21, 2009 at 6:34 AM, Robert Young wrote: > > Hi, > > I would like to perform a query and then get a summary of the term > > f

Term frequencies within a search

2009-05-21 Thread Robert Young
Hi, I would like to perform a query and then get a summary of the term frequencies of the result. Is this possible? Thanks Rob

Re: How to search for "-2" in field?

2008-12-11 Thread Robert Young
You could do it with a TermQuery but I'm not quite sure if that's the answer you're looking for. Cheers Rob On Thu, Dec 11, 2008 at 3:59 PM, Darren Govoni <[EMAIL PROTECTED]> wrote: > Hi, > This might be a dumb question, but I have a simple field like this > > field: 0 -2 Word > > that is index

Re: IR Pattern Language

2008-12-08 Thread Robert Young
> -Grant > > > On Dec 6, 2008, at 7:09 PM, Robert Young wrote: > > Hi, >> >> Does anyone know of a pattern language for text processing and information >> retrieval? >> >> Cheers >> Rob >> > > > --

IR Pattern Language

2008-12-06 Thread Robert Young
Hi, Does anyone know of a pattern language for text processing and information retrieval? Cheers Rob

Extending lucene's scoring

2008-11-24 Thread Robert Young
Hi, I've recently published a blog post on extending lucene's scoring with the org.apache.lucene.search.function package that readers of this list may be interested in. I'd be really interested to hear what people think of my aproach and whether there's a better way in the comments. http://www.ro

Re: Searching across spaces

2006-05-10 Thread Robert Young
Yes, I looked at the synonym sollution from Lucene in Action but, as you point out, I have to know about it ahead of time. The only sollution I've had so far is to index the term without the spaces as well and then run two searches, one with spaces and one without. It would work but it just seems

Searching across spaces

2006-05-10 Thread Robert Young
Hi, How can I search accross spaces in the document when the spaces aren't present in the search. For example, if the document contains "spongebob squarepants" but the user searches on "sponge bob" I would like to get the result. Thanks Rob --