Setting a Threshold of a sortable field to filter the result?

2008-03-29 Thread Vinci
Hi, How can I set a threshold value of a field so that I can filter the result which is lower than the threshold? By the schema.xml or set by the query? Thank you, Vinci -- View this message in context: http://www.nabble.com/Setting-a-Threshold-of-a-sortable-field-to-filter-the-result--tp16367

Multiple unique field?

2008-03-29 Thread Vinci
Hi, I want to set 2 field that are unique for different kind of searching. Does it possible? Thank you, Vinci -- View this message in context: http://www.nabble.com/Multiple-unique-field--tp16367339p16367339.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: synonyms

2008-03-29 Thread Christian Vogler
On Friday 28 March 2008 21:44:29 Leonardo Santagada wrote: > Well his examples are in brazilian portuguese and not spanish and the > biggest problem is that a spanish stemmer is not goin to work. I > haven't found a pt_BR steammer, have I overlooked something? Try the Snowball Porter filter factor

Re: Solr commits automatically on appserver shutdown

2008-03-29 Thread Yonik Seeley
On Fri, Mar 28, 2008 at 2:05 PM, Noble Paul നോബിള്‍ नोब्ळ् <[EMAIL PROTECTED]> wrote: > hi, > I am willing to work on this if you can give me some pointers as to > where to start? DirectUpateHandler2 implements it's own duplicates removal, which is no longer necessary. -Yonik

Re: hl.requireFieldMatch and idf

2008-03-29 Thread Koji Sekiguchi
Mike, Thank you for your response. cause: If hl.requireFieldMatch set to true, DefaultSolrHighlight.getQueryScorer() uses QueryScorer(Query,IndexReader,String) constructor in Lucene highlighter. Then the constructor calls getIdfWeightedTerms() to get an array of WeightedTerm. In getIdfWeighte

Re: solr.search.function

2008-03-29 Thread Chris Hostetter
: SELECT MID, AVG(Rating) as Average FROM mpr : WHERE PID in (p1[,p2,...]) : GROUP BY MID : ORDER BY Average DESC LIMIT 0, 10; : : Also I would require to boost the vales based on PIDs (some products have : more wight than others effectively computing a wighted average) : To handle

Re: Term frequency

2008-03-29 Thread Chris Hostetter
: is there a way to get the term frequency per found result back from Solr ? this info is in the "explain" section of the debugQuery output, see this recent post about a similar question... http://www.nabble.com/Highlight---get-terms-used-by-lucene-to16276184.html#a16323025 -Hoss