Re: Any way to "append" new text to an existing indexed field?

2010-10-01 Thread Allistair Crossley
g". If > each answer is indexed separately, I'd get two "What is the meaning of life?" > in my search results when someone searches for "solr". > > --- On Fri, 10/1/10, Allistair Crossley wrote: > >> From: Allistair Crossley >> Subject:

Re: Any way to "append" new text to an existing indexed field?

2010-10-01 Thread Andy
I'd get two "What is the meaning of life?" in my search results when someone searches for "solr". --- On Fri, 10/1/10, Allistair Crossley wrote: > From: Allistair Crossley > Subject: Re: Any way to "append" new text to an existing indexed field? > To: sol

Re: Any way to "append" new text to an existing indexed field?

2010-10-01 Thread Allistair Crossley
i would say question and answer are 2 different entities. if you are using the data import handler, i would personally create them as separate entities with their own queries to the database using the deltaQuery method to pick up only new rows. i guess it depends if you need question + answers t

Any way to "append" new text to an existing indexed field?

2010-10-01 Thread Andy
I'm building a Q&A application. There's a "Question" database table and an "Answer" table. For each question, I'm putting the question itself plus all the answers into a single field "text" to be indexed and searched. Say I have a question that has 10 existing answers that are already indexed.