On Tue, Aug 18, 2009 at 5:47 PM, Ninad Raut <hbase.user.ni...@gmail.com>wrote:
> Hi, > Can we create a Join query between two indexes on two cores? Is this > possible in Solr? > I have a index which stores author profiles and other index which stores > content and a author id as a reference. Can I query as > select Content,AuthorName > from Core0,Core1 > where core0.authorid = core1.authorid and authorid=A123 No but you can always make two calls and join it yourself. However, Solr supports multi-valued fields so it is best to de-normalize the data if you need to show both kinds of information in one query. -- Regards, Shalin Shekhar Mangar.