Re: Multi-index Design

2009-05-06 Thread Michael Ludwig
Matt Weber schrieb: http://wiki.apache.org/solr/MultipleIndexes Thanks, Mark. Your explanation and the pointer to the Wiki have clarified things for me. Michael Ludwig

Multi-index Design

2009-05-05 Thread Chris Masters
Hi All, I'm [still!] evaluating Solr and setting up a PoC. The requirements are to index the following objects:  - people - name, status, date added, address, profile, other people specific fields like group...  - organisations - name, status, date added, address, profile, other

Re: Multi-index Design

2009-05-05 Thread Walter Underwood
That is how we do it at Netflix. --wunder On 5/5/09 7:59 AM, Chris Masters roti...@yahoo.com wrote:  1) Is this approach/design sensible and do others use it?

Re: Multi-index Design

2009-05-05 Thread Walter Underwood
More precisely, we use a single core, flat schema, with a type field. wunder On 5/5/09 8:48 AM, Walter Underwood wunderw...@netflix.com wrote: That is how we do it at Netflix. --wunder On 5/5/09 7:59 AM, Chris Masters roti...@yahoo.com wrote:  1) Is this approach/design sensible and do

Re: Multi-index Design

2009-05-05 Thread Otis Gospodnetic
. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Chris Masters roti...@yahoo.com To: solr-user@lucene.apache.org Sent: Tuesday, May 5, 2009 10:59:40 AM Subject: Multi-index Design Hi All, I'm [still!] evaluating Solr and setting up

Re: Multi-index Design

2009-05-05 Thread Michael Ludwig
Chris Masters schrieb: - flatten the searchable objects as much as I can - use a type field to distinguish - into a single index - use multi-core approach to segregate domains of data Some newbie questions: (1) What is a type field? Is it to designate different types of documents, e.g.

Re: Multi-index Design

2009-05-05 Thread Matt Weber
1 - A field that is called type which is probably a string field that you index values such as people, organization, product. 2 - Yes, for each document you are indexing, you will include it's type, ie. person 3, 4, 5 - You would have a core for each domain. Each domain will then have

RE: Multi-index Design

2009-05-05 Thread Manepalli, Kalyan
. Thanks, Kalyan Manepalli -Original Message- From: Chris Masters [mailto:roti...@yahoo.com] Sent: Tuesday, May 05, 2009 10:00 AM To: solr-user@lucene.apache.org Subject: Multi-index Design Hi All, I'm [still!] evaluating Solr and setting up a PoC. The requirements are to index the following