Re: Query term count over a result set

2013-08-23 Thread JZ
; http://localhost:8080/solr/core/select?q=ahmet&wt=xml&facet=on&facet.field=title&facet.prefix=queryTerm > > > > > > > From: JZ > To: solr-user@lucene.apache.org > Sent: Friday, August 23, 2013 2:43 PM > Subject: Query te

Re: Query term count over a result set

2013-08-23 Thread Ahmet Arslan
Hi JZ, You can use faceting component. http://localhost:8080/solr/core/select?q=ahmet&wt=xml&facet=on&facet.field=title&facet.prefix=queryTerm From: JZ To: solr-user@lucene.apache.org Sent: Friday, August 23, 2013 2:43 PM Subject: Query t

Re: Query term count over a result set

2013-08-23 Thread Jack Krupansky
term count over a result set Hi all, I would like to get the total count of a query term of a result set. Is there a way to get this? I know there is a TermVectorComponent that does this per result (document), but it would be far too expensive to take the sum over all documents for a term given

Query term count over a result set

2013-08-23 Thread JZ
Hi all, I would like to get the total count of a query term of a result set. Is there a way to get this? I know there is a TermVectorComponent that does this per result (document), but it would be far too expensive to take the sum over all documents for a term given that term. The LukeRequestHan