Re: multi level faceting

2010-10-09 Thread Peter Karich
I am holding out >> for either SOLR-64 or SOLR-792 being a bit more mature before I need the >> functionality but if not I was thinking I could do multi-level faceting by >> indexing the data as a "String" like this: >> >> id: 1 >> SHOE: Sneakers|Men|S

Re: multi level faceting

2010-10-06 Thread Peter Karich
x27;m working on now. I am holding out > for either SOLR-64 or SOLR-792 being a bit more mature before I need the > functionality but if not I was thinking I could do multi-level faceting by > indexing the data as a "String" like this: > > id: 1 > SHOE: Sneakers|Men|Siz

RE: multi level faceting

2010-10-05 Thread Dyer, James
I've a similar problem with a project I'm working on now. I am holding out for either SOLR-64 or SOLR-792 being a bit more mature before I need the functionality but if not I was thinking I could do multi-level faceting by indexing the data as a "String" like this: id:

RE: multi level faceting

2010-10-05 Thread Nguyen, Vincent (CDC/OD/OADS) (CTR)
- From: Otis Gospodnetic [mailto:otis_gospodne...@yahoo.com] Sent: Monday, October 04, 2010 11:44 PM To: solr-user@lucene.apache.org Subject: Re: multi level faceting Hi, I *think* this is not what Vincent was after. If I read the suggestions correctly, you are saying to use &fq=x&

Recall: multi level faceting

2010-10-05 Thread Nguyen, Vincent (CDC/OD/OADS) (CTR)
Nguyen, Vincent (CDC/OD/OADS) (CTR) would like to recall the message, "multi level faceting".

RE: multi level faceting

2010-10-05 Thread Nguyen, Vincent (CDC/OD/OADS) (CTR)
: Otis Gospodnetic [mailto:otis_gospodne...@yahoo.com] Sent: Monday, October 04, 2010 11:44 PM To: solr-user@lucene.apache.org Subject: Re: multi level faceting Hi, I *think* this is not what Vincent was after. If I read the suggestions correctly, you are saying to use &fq=x&fq=y -- mult

Re: multi level faceting

2010-10-05 Thread Peter Karich
s/webcasts/faceting). I think > there's an example of what you're looking for there. > > Ephraim Ofir > > -Original Message- > From: Otis Gospodnetic [mailto:otis_gospodne...@yahoo.com] > Sent: Tuesday, October 05, 2010 5:44 AM > To: solr-user@lucene.

RE: multi level faceting

2010-10-04 Thread Ephraim Ofir
mailto:otis_gospodne...@yahoo.com] Sent: Tuesday, October 05, 2010 5:44 AM To: solr-user@lucene.apache.org Subject: Re: multi level faceting Hi, I *think* this is not what Vincent was after. If I read the suggestions correctly, you are saying to use &fq=x&fq=y -- multiple fqs. But I think Vincen

Re: multi level faceting

2010-10-04 Thread Otis Gospodnetic
ch-lucene.com/ - Original Message > From: Jason Brown > To: solr-user@lucene.apache.org > Sent: Mon, October 4, 2010 11:34:56 AM > Subject: RE: multi level faceting > > Yes, by adding fq back into the main query you will get results increasingly >filtered each time.

RE: multi level faceting

2010-10-04 Thread Jason Brown
). -Original Message- From: Nguyen, Vincent (CDC/OD/OADS) (CTR) [mailto:v...@cdc.gov] Sent: Mon 04/10/2010 16:34 To: solr-user@lucene.apache.org Subject: RE: multi level faceting Ok. Thanks for the quick response. Vincent Vu Nguyen Division of Science Quality and Translation Office of the

RE: multi level faceting

2010-10-04 Thread Nguyen, Vincent (CDC/OD/OADS) (CTR)
[mailto:a...@roxxor.co.uk] Sent: Monday, October 04, 2010 9:40 AM To: solr-user@lucene.apache.org Subject: Re: multi level faceting I think that is just sending 2 fq facet queries through. In Solr PHP I would do that with, e.g. $params['facet'] = true; $params['facet.fields&

multi level faceting

2010-10-04 Thread Nguyen, Vincent (CDC/OD/OADS) (CTR)
Hi, I was wondering if there's a way to display facet options based on previous facet values. For example, I've seen many shopping sites where a user can facet by "Mens" or "Womens" apparel, then be shown "sizes" to facet by (for Men or Women only - whichever they chose). Is this somethi

Re: multi level faceting

2010-10-04 Thread Allistair Crossley
I think that is just sending 2 fq facet queries through. In Solr PHP I would do that with, e.g. $params['facet'] = true; $params['facet.fields'] = array('Size'); $params['fq'] => array('sex' => array('Men', 'Women')); but yes i think you'd have to send through what the current facet query is and