Re: Hierarchical faceting in UI

2012-01-31 Thread Chris Hostetter
I'm not really following your specific example, but a worked through example of the "index full breadcrumb" type approach darren was suggesting for doing drill down i na hierarchy is described in slides 32-35 of this presentation (which was recorded as a webcast)... http://people.apache.org/%7

Re: Hierarchical faceting in UI

2012-01-31 Thread Chris Hostetter
: References: : : Message-ID: <1327357980.36539.yahoomail...@web160302.mail.bf1.yahoo.com> : Subject: Hierarchical faceting in UI https://people.apache.org/~hossman/#threadhijack Thread Hijacking on Mailing Lists When starting a new discussion on a mailing list, please do not reply

Re: Hierarchical faceting in UI

2012-01-24 Thread Yuhao
iosclerosis". > > I'm having trouble figuring out how I can get the complete path per above to > add to the URL of each facet term.  I know "velocity/facet_field.vm" is where > I build the URL.  I know how to simply add a "parent:" filter to the > URL.  But

Re: Hierarchical faceting in UI

2012-01-24 Thread Darren Govoni
d the URL. I know how to simply add a "parent:" filter to the URL. But I don't know how to access a document field, like the complete parent path, in "facet_field.vm". Any help would be great. Yuhao From: "dar...@ontrenet.com&

Re: Hierarchical faceting in UI

2012-01-24 Thread Yuhao
arent path, in "facet_field.vm".  Any help would be great. Yuhao From: "dar...@ontrenet.com" To: Yuhao Cc: solr-user@lucene.apache.org Sent: Monday, January 23, 2012 7:16 PM Subject: Re: Hierarchical faceting in UI On Mon, 23 Jan 2012 14:33:00 -0800 (PST), Yuhao

Re: Hierarchical faceting in UI

2012-01-23 Thread Johannes Goll
another way is to store the original hierarchy in a sql database (in the form: id, parent_id, name, level) and in the Lucene index store the complete hierarchy (from root to leave node) for each document in one field using the ids of the sql database. In that way you can get documents at any level

Re: Hierarchical faceting in UI

2012-01-23 Thread darren
On Mon, 23 Jan 2012 14:33:00 -0800 (PST), Yuhao wrote: > Programmatically, something like this might work: for each facet field, > add another hidden field that identifies its parent.  Then, program > additional logic in the UI to show only the facet terms at the currently > selected level.  For

Hierarchical faceting in UI

2012-01-23 Thread Yuhao
I have some hierarchical data that I want to represent in the Solr UI (/browse).  I've read through many discussions on this topic, including http://wiki.apache.org/solr/HierarchicalFaceting and http://packtlib.packtpub.com/library/9781849516068/ch06lvl1sec09 .  However, I didn't see a solution