RE: Advanced search with results matrix

2012-05-21 Thread Chris Hostetter
: No, it's not just one single query, rather, as I've mentioned before, it's : combination of searches with result count for each combination. Explained : in detail below: : 1) ("SQL Server" OR SQL) : 2) ("Visual Basic" OR VB.NET) : 3) (Java AND JavaScript) : 4) ("SQL Server" OR SQL) AND ("Visual

RE: Advanced search with results matrix

2012-05-09 Thread Gnanakumar
>> My question is, is it possible to run >> multiple combination of search queries to just get only result count "in a >> single trip" without using "facet.query"? >> > > No. AFAIK. Yes, you're true. I just tried googling on this and I'm finding that a requirement similar to mine is being filed u

Re: Advanced search with results matrix

2012-05-08 Thread Mikhail Khludnev
On Tue, May 8, 2012 at 11:38 AM, Gnanakumar wrote: > My question is, is it possible to run > multiple combination of search queries to just get only result count "in a > single trip" without using "facet.query"? > No. AFAIK. -- Sincerely yours Mikhail Khludnev Tech Lead Grid Dynamics

RE: Advanced search with results matrix

2012-05-08 Thread Gnanakumar
Hi Mikhail, > have you considered to junk your subqueries into disjunction > (BooleanQuery.Occurs.SHOULD) and request > http://wiki.apache.org/solr/SimpleFacetParameters#facet.query_:_Arbitrary_Qu ery_Faceting? Thanks for pointing/guiding me at the right time and/or direction about Solr "Facet Que

Re: Advanced search with results matrix

2012-05-04 Thread Mikhail Khludnev
Hi, have you considered to junk your subqueries into disjunction (BooleanQuery.Occurs.SHOULD) and request http://wiki.apache.org/solr/SimpleFacetParameters#facet.query_:_Arbitrary_Query_Faceting? On Fri, May 4, 2012 at 1:32 PM, Gnanakumar wrote: > > 1. If I understand correctly you just need to

RE: Advanced search with results matrix

2012-05-04 Thread Gnanakumar
> 1. If I understand correctly you just need to perform one query. Like so > (translated to propper syntax of course): >("SQL Server" OR SQL) OR ("Visual Basic" OR VB.NET) OR (Java AND > JavaScript) No, it's not just one single query, rather, as I've mentioned before, it's combination of sea

Re: Advanced search with results matrix

2012-05-04 Thread David Radunz
Hey Gnanam, 1. If I understand correctly you just need to perform one query. Like so (translated to propper syntax of course): ("SQL Server" OR SQL) OR ("Visual Basic" OR VB.NET) OR (Java AND JavaScript) 2. Every query you perform with Solr returns the 'results' count, if you ONLY want the r