Re: Simple Filter Query (fq) Use Case Question

2010-09-17 Thread Dennis Gearon
lm.php --- On Fri, 9/17/10, Shawn Heisey wrote: > From: Shawn Heisey > Subject: Re: Simple Filter Query (fq) Use Case Question > To: solr-user@lucene.apache.org > Date: Friday, September 17, 2010, 11:36 AM > On 9/16/2010 12:27 PM, Dennis Gearon > wrote: > > Is a core

Re: Simple Filter Query (fq) Use Case Question

2010-09-17 Thread Shawn Heisey
On 9/16/2010 12:27 PM, Dennis Gearon wrote: Is a core a running piece of software, or just an index/config pairing? Dennis Gearon A core is one complete index within a Solr instance. http://wiki.apache.org/solr/CoreAdmin My master index servers have five cores - ncmain, ncrss, live, build,

Re: Simple Filter Query (fq) Use Case Question

2010-09-16 Thread Dennis Gearon
gh at http://www.yert.com/film.php --- On Thu, 9/16/10, Andre Bickford wrote: > From: Andre Bickford > Subject: Re: Simple Filter Query (fq) Use Case Question > To: solr-user@lucene.apache.org > Date: Thursday, September 16, 2010, 4:45 PM > Thanks to everyone for your > suggestions.

Re: Simple Filter Query (fq) Use Case Question

2010-09-16 Thread Andre Bickford
otherwise we all die. > > Read 'Hot, Flat, and Crowded' > Laugh at http://www.yert.com/film.php > > > --- On Thu, 9/16/10, Jonathan Rochkind wrote: > >> From: Jonathan Rochkind >> Subject: Re: Simple Filter Query (fq) Use Case Question >> To: "

Re: Simple Filter Query (fq) Use Case Question

2010-09-16 Thread Dennis Gearon
e: > From: Jonathan Rochkind > Subject: Re: Simple Filter Query (fq) Use Case Question > To: "solr-user@lucene.apache.org" > Date: Thursday, September 16, 2010, 11:20 AM > One solr core has essentially one > index in it. (not only one 'field', > but o

Re: Simple Filter Query (fq) Use Case Question

2010-09-16 Thread Dennis Gearon
wrote: > From: Jonathan Rochkind > Subject: Re: Simple Filter Query (fq) Use Case Question > To: "solr-user@lucene.apache.org" > Date: Thursday, September 16, 2010, 11:20 AM > One solr core has essentially one > index in it. (not only one 'field', >

Re: Simple Filter Query (fq) Use Case Question

2010-09-16 Thread Jonathan Rochkind
rowded' Laugh at http://www.yert.com/film.php --- On Thu, 9/16/10, Chantal Ackermann wrote: From: Chantal Ackermann Subject: RE: Simple Filter Query (fq) Use Case Question To: "solr-user@lucene.apache.org" Date: Thursday, September 16, 2010, 1:05 AM Hi Andre, changing the e

RE: Simple Filter Query (fq) Use Case Question

2010-09-16 Thread Dennis Gearon
ature Warning EARTH has a Right To Life, otherwise we all die. Read 'Hot, Flat, and Crowded' Laugh at http://www.yert.com/film.php --- On Thu, 9/16/10, Chantal Ackermann wrote: > From: Chantal Ackermann > Subject: RE: Simple Filter Query (fq) Use Case Ques

RE: Simple Filter Query (fq) Use Case Question

2010-09-16 Thread Dennis Gearon
p://www.yert.com/film.php --- On Wed, 9/15/10, Andre Bickford wrote: > From: Andre Bickford > Subject: RE: Simple Filter Query (fq) Use Case Question > To: solr-user@lucene.apache.org > Date: Wednesday, September 15, 2010, 12:49 PM > Thanks for the response Erick. > > I did actu

RE: Simple Filter Query (fq) Use Case Question

2010-09-16 Thread Chantal Ackermann
--Original Message- > From: Erick Erickson [mailto:erickerick...@gmail.com] > Sent: Wednesday, September 15, 2010 3:09 PM > To: solr-user@lucene.apache.org > Subject: Re: Simple Filter Query (fq) Use Case Question > > One strategy is to denormalize all the way. That is, each >

Re: Simple Filter Query (fq) Use Case Question

2010-09-15 Thread Andre Bickford
nts. However, right now >> I'm testing on a copy of prod data from a smaller client with ~350,000 >> donors and ~8,000,000 gift records. So, when I "flipped" the index around as >> you suggested, it went from 350,000 documents to 8,000,000 documents. No >> is

Re: Simple Filter Query (fq) Use Case Question

2010-09-15 Thread Jonathan Rochkind
00 documents to 8,000,000 documents. No issues with performance at all. Thanks again, Andre -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Wednesday, September 15, 2010 3:09 PM To: solr-user@lucene.apache.org Subject: Re: Simple Filter Query (fq) Use Case Que

Re: Simple Filter Query (fq) Use Case Question

2010-09-15 Thread Jonathan Rochkind
ller client with ~350,000 donors and ~8,000,000 gift records. So, when I "flipped" the index around as you suggested, it went from 350,000 documents to 8,000,000 documents. No issues with performance at all. Thanks again, Andre -Original Message- From: Erick Erickson [mailto

RE: Simple Filter Query (fq) Use Case Question

2010-09-15 Thread Andre Bickford
m] Sent: Wednesday, September 15, 2010 3:09 PM To: solr-user@lucene.apache.org Subject: Re: Simple Filter Query (fq) Use Case Question One strategy is to denormalize all the way. That is, each Solr "document" is Gift Amount and Gift Date would not be multiValued. You'd create a diff

Re: Simple Filter Query (fq) Use Case Question

2010-09-15 Thread Erick Erickson
One strategy is to denormalize all the way. That is, each Solr "document" is Gift Amount and Gift Date would not be multiValued. You'd create a different "document" for each gift, so you'd have multiple documents with the same Id, Name, and Address. Be careful, though, if you've defined Id as a Uni

Simple Filter Query (fq) Use Case Question

2010-09-15 Thread Andre Bickford
I'm working on creating a solr index search for a charitable organization. The solr index stores documents of donors. Each donor document has the following four fields: Id Name Address Gift Amount (multiValued) Gift Date (multiValued) In our relational database, there is a one-to-many relations