Re: Hierarchical Documents

2005-08-28 Thread orens (sent by Nabble.com)
Hi All, In the article they mention source code for their work, but I couldn't find it. Did anyone implement the ideas mentiond in the article? Thanks, Orens -- Sent from the Lucene - Java Users forum at Nabble.com: http://www.nabble.com/Hierarchical-Documents-t242604.html#a728669

Re: Hierarchical Documents

2005-08-23 Thread Dan Funk
People indexing XML documents tend to deal with the same kind of problem, there is an excellent article at the URL below showing how they handled some fairly complex hierarchical queries. http://www.idealliance.org/papers/xmle02/dx_xmle02/papers/03-02-08/03-02-08.html Rohit Lodha wrote: Hi A

Re: Hierarchical Documents

2005-08-23 Thread Paul . Illingworth
I have been struggling with this sort of problem for some time and still haven't got an ideal solution. Initially I was going to go for the approach Erik has suggested for similar reasons - it allowed me to search within categories and within sub categories of those categories very simply. Un

Re: Hierarchical Documents

2005-08-23 Thread Erik Hatcher
On Aug 22, 2005, at 2:27 AM, Rohit Lodha wrote: Currently, Documents cannot contain other documents. I have a Graph of Objects (Documents) to search in. I could flatten them and search but... Is there any nice way to do it? I have used a technique of encoding a hierarchical path (like "/ ca

Hierarchical Documents

2005-08-21 Thread Rohit Lodha
Hi All, Currently, Documents cannot contain other documents. I have a Graph of Objects (Documents) to search in. I could flatten them and search but... Is there any nice way to do it? Rohit