Re: Indexing a long list

2013-03-31 Thread Paul Bell
query > whether v(i) or v(j) are or are not present as keywords. > > -- Jack Krupansky > > -Original Message- From: Paul Bell > Sent: Sunday, March 31, 2013 8:21 AM > To: java-user@lucene.apache.org > Subject: Indexing a long list > > > Hi All, > > Supp

Re: Indexing a long list

2013-03-31 Thread Paul Bell
ord value pairs. > > And if you can denormalize your data, storing structure as separate > documents can make sense and support more powerful queries. Although the > join capabilities are rather limited. > > > -- Jack Krupansky > > -Original Message----- From: Pau

Re: Indexing a long list

2013-03-31 Thread Jack Krupansky
- From: Paul Bell Sent: Sunday, March 31, 2013 8:52 AM To: java-user@lucene.apache.org Subject: Re: Indexing a long list Hi Jack, Thanks for the reply. I am very new to Lucene. Your timing is a bit uncanny. I was just coming to the conclusion that there's nothing special about this case for L

Re: Indexing a long list

2013-03-31 Thread Jack Krupansky
whether v(i) or v(j) are or are not present as keywords. -- Jack Krupansky -Original Message- From: Paul Bell Sent: Sunday, March 31, 2013 8:21 AM To: java-user@lucene.apache.org Subject: Indexing a long list Hi All, Suppose I need to index a property whose value is a long list of terms

Indexing a long list

2013-03-31 Thread Paul Bell
Hi All, Suppose I need to index a property whose value is a long list of terms. For example, someProperty = ["v1", "v2", , "v100"] Please note that I could drop the leading "v" and index these as numbers instead of strings. But the question is what's the best practice in Lucene whe