hitcollector topdocs

2008-03-25 Thread JensBurkhardt
Hi everybody, I was searching for informations about the hitcollector. I was wondering if the value of the fields have to be stored or not. i tested it and it worked both but i'm still not really sure about it. Second question is, can i work with tokenized fields? Best regards Jens -- View

Re: explain() - fieldnorm

2008-03-25 Thread JensBurkhardt
another problem just occurred. These are the results from explain() : 0.27576536 = (MATCH) product of: 0.827296 = (MATCH) sum of: 0.827296 = (MATCH) sum of: 0.24544832 = (MATCH) weight(ti:genetik in 1849319), product of: 0.015469407 = queryWeight(ti:genetik), product of:

Highlighter Hits

2008-03-12 Thread JensBurkhardt
Hello everybody, I have s slight problem using lucenes highlighter. If i have the highlighter enabled, a query creates 0 hits, if i disable the highlighter i get the hits. It seems like, when i call searcher.search() and pass my Hits hits to the highlighter function, the program quits. All

Re: combine wildcard and phrase query

2008-03-07 Thread JensBurkhardt
about SpanNear or some such. This may be wy off base. If so, could you give a concrete example of what your inputs are and how you want to search them? Best Erick On Thu, Mar 6, 2008 at 7:28 AM, JensBurkhardt [EMAIL PROTECTED] wrote: okay, another problem occured. I have different

combine wildcard and phrase query

2008-03-06 Thread JensBurkhardt
hey everybody, I'm wondering if it's possible to combine wildcards and phrase query. For example term1 term* I know that the documentation says Lucene supports single and multiple character wildcard searches within single terms (not within phrase queries) but maybe someone has had the same

Re: combine wildcard and phrase query

2008-03-06 Thread JensBurkhardt
for such a number i want the search hit every single field and not all fields together. Right now i separate the string using an unique separator (in this case just $$$) so i can split the string into the numbers but i think this is kinda the worst form doing it. JensBurkhardt wrote: hey

Re: combine wildcard and phrase query

2008-03-06 Thread JensBurkhardt
need to worry about SpanNear or some such. This may be wy off base. If so, could you give a concrete example of what your inputs are and how you want to search them? Best Erick On Thu, Mar 6, 2008 at 7:28 AM, JensBurkhardt [EMAIL PROTECTED] wrote: okay, another problem occured

Re: MultiFieldQueryParser - BooleanClause.Occur

2008-03-03 Thread JensBurkhardt
Donna Gresh JensBurkhardt [EMAIL PROTECTED] wrote on 02/29/2008 10:46:51 AM: Hey everybody, I read that it's possible to generate a query like: (title:term1 OR author:term1) AND (title:term2 OR author:term2) and so on. I also read that BooleanClause.Occur should help

Re: explain() - fieldnorm

2008-03-03 Thread JensBurkhardt
Okay, thanks a lot. Maybe I should change my indexing behavior ;-) . Greetings Jens hossman wrote: : As my subject is telling, i have a little problem with analyzing the : explain() output. : I know, that the fieldnorm value consists out of documentboost, fieldboost : and lengthNorm.

MultiFieldQueryParser - BooleanClause.Occur

2008-02-29 Thread JensBurkhardt
Hey everybody, I read that it's possible to generate a query like: (title:term1 OR author:term1) AND (title:term2 OR author:term2) and so on. I also read that BooleanClause.Occur should help me handle this problem. But i have to admit that i totally don't understand how to use it. If someone

Re: Boost Single Values in Field

2008-02-22 Thread JensBurkhardt
Okay, Thanks a lot for answering my questions. I'll give the split string thing a try :-) . Best Regards Jens Burkhardt Grant Ingersoll-6 wrote: On Feb 21, 2008, at 6:53 AM, JensBurkhardt wrote: Hello again, Thanks for your immediate response. As i understand, the only way

Re: Boost Single Values in Field

2008-02-21 Thread JensBurkhardt
AM, JensBurkhardt wrote: Hey, I'm wondering if you can boost single values and not the whole field. For example: i'm having a field called test with value1 value2 value3 - all packed in a String - and i want to boost specific values e.g value1^0.5 value2^1.5 etc. The problem is that i

Boost Single Values in Field

2008-02-20 Thread JensBurkhardt
Hey, I'm wondering if you can boost single values and not the whole field. For example: i'm having a field called test with value1 value2 value3 - all packed in a String - and i want to boost specific values e.g value1^0.5 value2^1.5 etc. The problem is that i can't seperate this field. I don't