Re: SOLR newbie question: How to filter the results based on my Unique Key

2009-02-28 Thread Venu Mittal
Ok so I tried out XSLT transformation on the resulting xml and I must say that I am very impressed with the results. I will do some more load testing tomorrow and finalize this solution. Thanks everyone. From: Venu Mittal To: solr-user@lucene.apache.org Sent

Re: SOLR newbie question: How to filter the results based on my Unique Key

2009-02-28 Thread Venu Mittal
Hi Stephen, Thanks for the info. I took the latest patch (collapsing-patch-to-1.3.0-dieter.patch) and applied it on the source code. Then I took the newly created jar added it to SOLR war. But SOLR is still ignoring the new config. I am still getting 2 records in my resultset. Is there someth

Re: solr 1.3 - did something with deleting documents change?

2009-02-28 Thread Stephen Weiss
Yeah honestly I don't know how it ever worked either. The notes in the wiki seem to indicate that syntax (with multiple nodes) will be supported in Solr 1.4, not 1.3 - but I guess it really just means that you can't combine those with a node yet. I'll miss the deletesPending stat, I think

Re: SOLR newbie question: How to filter the results based on my Unique Key

2009-02-28 Thread Stephen Weiss
There's an experimental patch for this I've had pretty good success with: https://issues.apache.org/jira/browse/SOLR-236 If you don't particularly need faceting support to work 100% it's already pretty perfect. Officially I guess they want it to make it in for version 1.5?? But in the me

SOLR newbie question: How to filter the results based on my Unique Key

2009-02-28 Thread Venu Mittal
Hi List, Is it possible to filter out the duplicate results using a particular field in the document. e.g. 1 123 a...@b.com Now if I search for email = a...@b.com I get 2 search results but I want to send just one record cause my cust_id is same. Is it possible or do I need to handle i

Re: concurrency problem with delta-import (indexing various cores simultaniously)

2009-02-28 Thread Marc Sturlese
Thank you so much Ryuuichi, I was completelly stuck with this problem! Ryuuichi KUMAI wrote: > > Hello Marc, > > I faced the similar problem, and I found a workaround. > If the performance degradation in your application is caused by GC, > this information might help you: > > https://issues.ap

Re: Search schema using q Query

2009-02-28 Thread Chris Hostetter
: One first step is to use debugQuery=true as an additional parameter to your : search request. That'll return debug info in the response, which includes a : couple of views of the parsed query. the query mentioned in the original post appears to come from debugQuery=true using hte dismax parser

FunctionQuery does not work as advertised

2009-02-28 Thread Luis Neves
Hello all. I have the need to include the result of a computed value in the search results of solr query and sort by that value. The documentation about FunctionQuery available at: states that this is possible (see the "General Example" at the botto