Re: Facet search concept problem

2010-02-15 Thread Ranveer Kumar
Hi Eric, Raju Thanks for reply.. It means I need to index separate table data (news, article and blog), currently I am joining the table and making a single rows for all three table. One other thing I want to know that, in this case (if i indexing table data separately then) some column of the t

Re: Facet search concept problem

2010-02-15 Thread NarasimhaRaju
Hi, you should have a new field in your index say 'type' which will have values 'news','article' and 'blog' for documents news,article and blog respectively. when searching with facet's elabled make use of this 'type' field then you will get what you wanted. Regards, P.N.Raju, ___

Re: Facet search concept problem

2010-02-14 Thread Erik Hatcher
You didn't mention what your faceting parameters were, but what you want to do is add a field to every document that specifies its source. So add a "source" (or "type" maybe a better field name) field specifying "news", "article", or "blog". Then facet on that new field. Erik O