Re: schema design help

2012-03-13 Thread Gora Mohanty
On 13 March 2012 18:19, Abhishek tiwari wrote: [...] > My one more concern, > Though Establishments, Events, Movies are not related to each other, > > I have to make 3 search queries to their independent cores and club the > data to show, will that effect my relevancy? Yes, it will. The results f

Re: schema design help

2012-03-13 Thread Abhishek tiwari
Hi Gora, Thanks, My one more concern, Though Establishments, Events, Movies are not related to each other, I have to make 3 search queries to their independent cores and club the data to show, will that effect my relevancy? There is movie with title "Striker" and Establishment with title "Striker

Re: schema design help

2012-03-07 Thread Gora Mohanty
On 8 March 2012 11:05, Abhishek tiwari wrote: > Gora, > we are not having the related search ... > like u have mentioned ... * will a search on an Establishment > also require results from Movie, such as what movies are showing > at the establishment* > > Establishment doesnot require movie reults

Re: schema design help

2012-03-07 Thread Abhishek tiwari
Gora, we are not having the related search ... like u have mentioned ... * will a search on an Establishment also require results from Movie, such as what movies are showing at the establishment* Establishment doesnot require movie reults .. each enitity has there separate search.. On Thu, Mar 8,

Re: schema design help

2012-03-07 Thread Gora Mohanty
On 8 March 2012 10:40, Abhishek tiwari wrote: >  my page have layout in following manner >  *All tab* :which will contain all entities (Establishment/Event/Movie) > Establishment: contain Establishment search results > Event tab : will contain Event search results > Movie tab : will contain Movie

Re: schema design help

2012-03-07 Thread Abhishek tiwari
my page have layout in following manner *All tab* :which will contain all entities (Establishment/Event/Movie) Establishment: contain Establishment search results Event tab : will contain Event search results Movie tab : will contain Movie search results please suggest me how to design my schema

Re: schema design help

2012-03-07 Thread Walter Underwood
You should create multiple cores when each core is an independent search. If you have three separate search pages, you may want three separate cores. wunder Search Guy, Chegg.com On Mar 7, 2012, at 8:48 PM, Abhishek tiwari wrote: > please suggest me when one should create multiple core..? >

Re: schema design help

2012-03-07 Thread Abhishek tiwari
please suggest me when one should create multiple core..? On Thu, Mar 8, 2012 at 12:12 AM, Walter Underwood wrote: > Solr is not relational, so you will probably need to take a fresh look at > your data. > > Here is one method. > > 1. Sketch your search results page. > 2. Each result is a docum

Re: schema design help

2012-03-07 Thread Walter Underwood
Solr is not relational, so you will probably need to take a fresh look at your data. Here is one method. 1. Sketch your search results page. 2. Each result is a document in Solr. 3. Each displayed item is a stored field in Solr. 4. Each searched item is an indexed field in Solr. It may help to

Re: schema design help

2012-03-07 Thread Willem Basson
I would say do both. If you have the capacity create a core for each and one that combines it and do some tests. There are pros and cons to both approaches. If you ever need joins in RDBMS terms then you probably want one index. If not then one index might still be a lot easier. The only real reaso

Re: schema design help

2012-03-06 Thread Abhishek tiwari
thanks for replying .. In our RDBMS schema we have Establishment/Event/Movie master relations. Establishment has title ,description , ratings, tags, cuisines (multivalued), services (multivalued) and features (multivalued) like fields..similarly in Event title, description, category(multivalued)

Re: schema design help

2012-03-06 Thread Gora Mohanty
On 6 March 2012 18:01, Abhishek tiwari wrote: > i am new in solr  want help in shema design .  i have multiple entities > like Event , Establishments and Movies ..each have different types of > relations.. should i make diffrent core for each entities ? It depends on your use case, i.e., what wou