Re: Facet question: Getting only the matched value from multivalued field

2013-11-05 Thread Raymond Wiker
;, > >"Wagner, Ronald S MD ", > > ] > > , > > "dname": [ > >"Wagner Enterprise Ronald", > >"Gery Levy", > > ] > > > > Any help/suggestion on this? > &

Re: Facet question: Getting only the matched value from multivalued field

2013-11-05 Thread Erick Erickson
t;Gery Levy", > ] > > Any help/suggestion on this? > > -Original Message- > From: Aloke Ghoshal [mailto:alghos...@gmail.com] > Sent: Monday, November 04, 2013 1:09 AM > To: solr-user@lucene.apache.org > Subject: Re: Facet question: Getting only th

RE: Facet question: Getting only the matched value from multivalued field

2013-11-04 Thread Susheel Kumar
Gery Levy", ] Any help/suggestion on this? -Original Message- From: Aloke Ghoshal [mailto:alghos...@gmail.com] Sent: Monday, November 04, 2013 1:09 AM To: solr-user@lucene.apache.org Subject: Re: Facet question: Getting only the matched value from multivalued field

Re: Facet question: Getting only the matched value from multivalued field

2013-11-03 Thread Aloke Ghoshal
Hi Susheel, You might be able to pull something off using facet.prefix: http://wiki.apache.org/solr/SimpleFacetParameters#facet.prefix. Will work when the prefix is exact and doesn't require any analysis, something along these lines: http://solr.pl/en/2013/03/25/autocomplete-on-multivalued-fields-

Facet question: Getting only the matched value from multivalued field

2013-11-03 Thread Susheel Kumar
Hello, We have one multivalued field called "dname". When user search for any of the name like "160 Associates LLC", we are able to get facet, but we only want values which matches the search query. Is there any way? For e.g. assuming below doc, I want to get facet results for only first value

Re: Date Facet Question

2011-08-20 Thread Jamie Johnson
Makes complete sense, when faceting on dates I'm just checking to see if NOW is in it and replace it with either the beginning of the day or the end of the day (depending if it's lower or upper) and use that. This works well. Thanks for the quick response. On Fri, Aug 19, 2011 at 3:13 PM, Chris H

Re: Date Facet Question

2011-08-19 Thread Chris Hostetter
: when the response comes back the facet names are : : 2010-08-14T01:50:58.813Z ... : instead of something like : : NOW-11MONTH ... : where as facet queries if specifying a set of facet queries like : : datetime:[NOW-1YEAR TO NOW] ... : the labels come back just as speci

Date Facet Question

2011-08-13 Thread Jamie Johnson
When doing Date faceting I've noticed that if the query is something like: start: NOW-1YEAR end: NOW GAP: +1MONTH when the response comes back the facet names are 2010-08-14T01:50:58.813Z 2010-09-14T01:50:58.813Z 2010-10-14T01:50:58.813Z 2010-11-14T01:50:58.813Z 2010-12-14T01:50:58.813Z etc ins

Re: Facet question

2007-12-07 Thread Yonik Seeley
On Dec 7, 2007 11:34 AM, Steve Barr <[EMAIL PROTECTED]> wrote: > I'm new to Solr and getting an unexpected result. Basically I have a > field "location" and one document with location values "Europe", > "France", and "United States". When I try to do a faceted query on > the location field, "Fran

Facet question

2007-12-07 Thread Steve Barr
I'm new to Solr and getting an unexpected result. Basically I have a field "location" and one document with location values "Europe", "France", and "United States". When I try to do a faceted query on the location field, "France" returns 0 results, but the other two locations are found. Schema.x

RE: facet question

2007-05-31 Thread Chris Hostetter
: > Also, I'm still suspicious about your application. You have 1.5M : > distinct tags for 4M documents? That seems quite dense. it's possible the app is using the filterCache for other things (on other fields) besies just the tag field ... but that still doesn't explain one thing... : descrip

RE: facet question

2007-05-31 Thread Gal Nitzan
> -Original Message- > From: Mike Klaas [mailto:[EMAIL PROTECTED] > Sent: Friday, June 01, 2007 12:36 AM > To: solr-user@lucene.apache.org > Subject: Re: facet question > > On 31-May-07, at 1:35 PM, Gal Nitzan wrote: > > >>> > >>> Ho

Re: facet question

2007-05-31 Thread Mike Klaas
On 31-May-07, at 1:35 PM, Gal Nitzan wrote: However, the cache size brings us to the 2GB limit. If the cardinality of many of the tags is low, you can use HashSet- based filters (the default size at which a HashSet is used is 3000). [Gal Nitzan] I will appreciate a pointer to documentation

RE: facet question

2007-05-31 Thread Gal Nitzan
> -Original Message- > From: Mike Klaas [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 31, 2007 9:07 PM > To: solr-user@lucene.apache.org > Subject: Re: facet question > > On 31-May-07, at 1:33 AM, Gal Nitzan wrote: > > > Hi, > > > > We ha

Re: facet question

2007-05-31 Thread Mike Klaas
On 31-May-07, at 1:33 AM, Gal Nitzan wrote: Hi, We have a small index with about 4 million docs. On this index we have a field "tags" which is a multiple values field. Running a facet query on the index with something like: facet=true&facetField=tags&q=type:video takes about 1 minute. We hav

Re: facet question

2007-05-31 Thread Yonik Seeley
On 5/31/07, Gal Nitzan <[EMAIL PROTECTED]> wrote: We have a small index with about 4 million docs. On this index we have a field "tags" which is a multiple values field. Running a facet query on the index with something like: facet=true&facetField=tags&q=type:video takes about 1 minute. We hav