Weighting the Licene score

2008-08-26 Thread s d
I want to weighted average the Lucene score with an additional score i have, i.e. (W1 * Lucene score + W2 * Other score) / (W1 + W2) . What is the easiest way to do this? Also, is the Lucene score normalized. Thanks,

Re: Weighting the Licene score

2008-08-26 Thread s d
/ -- Lucene - Solr - Nutch - Original Message From: s d [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Tuesday, August 26, 2008 1:55:38 PM Subject: Weighting the Licene score I want to weighted average the Lucene score with an additional score i have, i.e. (W1

Does SOLR support RAMDirectory ?

2008-06-01 Thread s d
Can i use RAMDirectory in SOLR?Thanks, S

result limit / diversity with an OR query

2008-05-12 Thread s d
Hi,I have a query similar to: x OR y OR z and i want to know if there is a way to make sure i get 1 result with x, 1 result with y and one with z ? Alternatively, is it possible to achieve through facets? Thanks, S.

Interleaved results form different sources

2008-04-14 Thread s d
We have an index of documents from different sources and we want to make sure the results we display are interleaved from the different sources and not only ranked based on relevancy.Is there a way to do this ? Thanks, S.

Inconsistent results

2008-02-01 Thread s d
Hi,I use SOLR with standard handler and when i send the same exact query to solr i get different results every time (i.e. refresh the page with the query and get different results). Any ideas? Thx,

Performance - FunctionQuery

2008-01-08 Thread s d
Adding a FunctionQuery made the query response time slower by ~300ms, adding a 2ndFunctionQuery added another ~300ms so overall i got over 0.5sec for a response time (slow).Is this expected or am i doing something wrong ? Thx

Min-Score Filter

2008-01-08 Thread s d
Is there a way or a point in filtering all results bellow a certain score? e.g. exclude all results bellow score Y.Thanks

Re: How do i normalize diff information (different type of documents) in the index ?

2008-01-08 Thread s d
Got it ( http://wiki.apache.org/solr/DisMaxRequestHandler#head-cfa8058622bce1baaf98607b197dc906a7f09590) . thx ! On Jan 8, 2008 12:11 AM, Chris Hostetter [EMAIL PROTECTED] wrote: : Isn't there a better way to take the information into account but still : normalize? taking the score of only

DisMax Syntax

2008-01-08 Thread s d
User Query: x1 x2 Desired query (Lucene): field:x1 x2 field:x1 x2~a^b In the standard handler the only way i saw how to make this work was: field:x1 field:x2 field:x1 x2!a^b Now that i want to try the DisMax is there a way to implement this without having duplicate fields? i.e. since the fields

Re: DisMax Syntax

2008-01-08 Thread s d
I may be mistaken, but this is not equivalent to my query.In my query i have matches for x1, matches for x2 without slope and/or boosting and then match to x1 x2 (exact match) with slope (~) a and boost (b) in order to have results with exact match score better. The total score is the sum of all

Re: How do i normalize diff information (different type of documents) in the index ?

2008-01-07 Thread s d
:02 PM, s d wrote: e.g. if the index is field1 and field2 and documents of type (A) always have information for field1 AND information for field2 while document of type (B) always have information for field1 but NEVER information for field2. The problem is that the formula will sum

Query Syntax (Standard handler) Question

2008-01-04 Thread s d
Is there a simpler way to write this query (I'm using the standard handler) ? field1:t1 field1:t2 field1:t1 t2 field2:t1 field2:t2 field2:t1 t2 Thanks,

RAMDirectory

2007-12-27 Thread s d
Is there a way to use RAMDirectory with SOLR?If you can point me to documentation that would be great. Thanks, S

Is there a way to retrieve the analyzed tokens (e.g. the stemmed values) of a field from the SOLR index ?

2007-12-09 Thread s d
Is there a way to retrieve the analyzed tokens (e.g. the stemmed values) of a field from the SOLR index ? Almost like using SOLR as a utility for generating the tokens. Thanks !

display tokens

2007-12-07 Thread s d
How can I retrieve the analyzed tokens (e.g. the stemmed values) of a specific field?