Re: Group of documents.

2007-10-07 Thread Chris Hostetter
: The only solution that we have in our minds now is to have two indexes one : for articles and one for feeds. There are two problems with this approach : 1) redundancy this isn't really a "problem" a lucene index is designed to make searching fast, not to be a normalized data store -- there are

Re: Group of documents.

2007-10-07 Thread Yonik Seeley
On 10/6/07, Raghu Ram <[EMAIL PROTECTED]> wrote: > But then how can i search for feeds ??? I'm not quite sure what you mean by "search for feeds"... but assuming you want a list of feeds that contain articles with the search terms, you could do faceting on the "feeds" field. That would let you kn

Re: Group of documents.

2007-10-07 Thread Alf Eaton
Make a separate index of feeds? alf Raghu Ram wrote: > But then how can i search for feeds ??? > > On 10/6/07, Alf Eaton <[EMAIL PROTECTED]> wrote: >> Raghu Ram wrote: >>> Hi, >>> We have an application in which we want to index feeds. Each feed >> is a >>> collection of articles and some

Re: Group of documents.

2007-10-06 Thread Raghu Ram
But then how can i search for feeds ??? On 10/6/07, Alf Eaton <[EMAIL PROTECTED]> wrote: > > Raghu Ram wrote: > > Hi, > > We have an application in which we want to index feeds. Each feed > is a > > collection of articles and some other metadata. The problem is that > > sometimes we want to

Re: Group of documents.

2007-10-06 Thread Alf Eaton
Raghu Ram wrote: > Hi, > We have an application in which we want to index feeds. Each feed is a > collection of articles and some other metadata. The problem is that > sometimes we want to search for feeds and sometimes for articles. As far as > I know lucene doesn't provide any abstraction f