Re: DisMax - fetching dynamic fields

2009-08-05 Thread Alexey Serba
My bad! Please disregard this post. Alex On Tue, Aug 4, 2009 at 9:21 PM, Alexey Serba wrote: > Solr 1.4 built from trunk revision 790594 ( 02 Jul 2009 ) > > On Tue, Aug 4, 2009 at 9:19 PM, Alexey Serba wrote: >> Hi everybody, >> >> I have a couple of dynamic fields in my schema, e.g. rating_* pop

Re: DisMax - fetching dynamic fields

2009-08-04 Thread Alexey Serba
Solr 1.4 built from trunk revision 790594 ( 02 Jul 2009 ) On Tue, Aug 4, 2009 at 9:19 PM, Alexey Serba wrote: > Hi everybody, > > I have a couple of dynamic fields in my schema, e.g. rating_* popularity_* > > The problem I have is that if I try to specify existing fields > "rating_1 popularity_1"

DisMax - fetching dynamic fields

2009-08-04 Thread Alexey Serba
Hi everybody, I have a couple of dynamic fields in my schema, e.g. rating_* popularity_* The problem I have is that if I try to specify existing fields "rating_1 popularity_1" in "fl" parameter - DisMax handler just ignores them whereas StandardRequestHandler works fine. Any clues what's wrong?

Re: Fetching Dynamic Fields

2009-06-09 Thread Erik Hatcher
One option is to hit the Luke request handler (&numTerms=0 for best performance), grab all the field names there, then build the fl list (or facet.field in the cases I've used this trick for) from the fields with the prefix you desire. Erik On Jun 8, 2009, at 11:40 AM, Manepalli, K

RE: Fetching Dynamic Fields

2009-06-08 Thread Manepalli, Kalyan
Dynamic Fields Hope this helps - http://wiki.apache.org/solr/CommonQueryParameters#head-db2785986af2355759faaaca53dc8fd0b012d1ab Cheers Avlesh On Mon, Jun 8, 2009 at 9:10 PM, Manepalli, Kalyan < kalyan.manepa...@orbitz.com> wrote: > Hi all, >Is there a way to select all

Re: Fetching Dynamic Fields

2009-06-08 Thread Avlesh Singh
Hope this helps - http://wiki.apache.org/solr/CommonQueryParameters#head-db2785986af2355759faaaca53dc8fd0b012d1ab Cheers Avlesh On Mon, Jun 8, 2009 at 9:10 PM, Manepalli, Kalyan < kalyan.manepa...@orbitz.com> wrote: > Hi all, >Is there a way to select all the dynamic fields in the fl

Fetching Dynamic Fields

2009-06-08 Thread Manepalli, Kalyan
Hi all, Is there a way to select all the dynamic fields in the fl field without using *. Here is what I am looking for. Fields in the schema, locationName_*, locationId,description,content. I want to select just the locationName_* and locationId. How can I do this without using fl=*,