Re: Sub query using SOLR?

2011-05-13 Thread Thalaiselvam
But we cann't judge the subquery return value, Is this possible to add more than ID in sub query?.. Thanks Regards, Thalaiselvam N -- View this message in context: http://lucene.472066.n3.nabble.com/Sub-query-using-SOLR-tp2193251p2931267.html Sent from the Solr - User mailing list archive

Re: Sub query using SOLR?

2011-01-05 Thread Grijesh.singh
Why thinking so complex,just use result of first query as filter for your second query like fq=related_id:(id1 OR id2 OR id3 )q=q=”type:IT AND manager_12:dave” somthing like that - Grijesh -- View this message in context: http://lucene.472066.n3.nabble.com/Sub-query-using-SOLR

Re: Sub query using SOLR?

2011-01-05 Thread Geert-Jan Brits
use result of first query as filter for your second query like fq=related_id:(id1 OR id2 OR id3 )q=q=”type:IT AND manager_12:dave” somthing like that - Grijesh -- View this message in context: http://lucene.472066.n3.nabble.com/Sub-query-using-SOLR-tp2193251p2197490.html

Sub query using SOLR?

2011-01-04 Thread bbarani
if it is possible to use the query() function (function query) for my case.. Just want to know if ther is a better approach... Thanks, Barani -- View this message in context: http://lucene.472066.n3.nabble.com/Sub-query-using-SOLR-tp2193251p2193251.html Sent from the Solr - User mailing list archive

Re: Sub query using SOLR?

2011-01-04 Thread Estrada Groups
: http://lucene.472066.n3.nabble.com/Sub-query-using-SOLR-tp2193251p2193251.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Sub query using SOLR?

2011-01-04 Thread dan whelan
Something like this might work. It's two dismax queries joined by an AND q=_query_:{!dismax mm='100%25' qf='query fields and boosts for one query' v=$q1} AND _query_:{!dismax mm='100%25' qf='query fields and boosts for second query' v=$q2}q1=query oneq2=query two Just change the qf params in

Re: Sub query using SOLR?

2011-01-04 Thread Dennis Gearon
=nl.e036' EARTH has a Right To Life, otherwise we all die. - Original Message From: Estrada Groups estrada.adam.gro...@gmail.com To: solr-user@lucene.apache.org solr-user@lucene.apache.org Sent: Tue, January 4, 2011 10:33:29 AM Subject: Re: Sub query using SOLR? I am +1 on the interest

RE: Sub query using SOLR?

2011-01-04 Thread Steven A Rowe
, 2011 1:27 PM To: solr-user@lucene.apache.org Subject: Sub query using SOLR? Hi, I am trying to use subquery in SOLR, is there a way to implement this using SOLR query syntax? Something like Related_id: IN query(field=ud, q=”type:IT AND manager_12:dave”) The thing I really want

Re: Sub query using SOLR?

2011-01-04 Thread Jonathan Rochkind
@lucene.apache.org Subject: Sub query using SOLR? Hi, I am trying to use subquery in SOLR, is there a way to implement this using SOLR query syntax? Something like Related_id: IN query(field=ud, q=”type:IT AND manager_12:dave”) The thing I really want is to use output of one query to be the input