RE: MemoryIndex "field must not be added more than once"

2012-03-12 Thread Dave Seltzer
Thanks for your help Uwe. I've created an issue: https://issues.apache.org/jira/browse/LUCENE-3865 -Dave -Original Message- From: Uwe Schindler [mailto:u...@thetaphi.de] Sent: Wednesday, March 07, 2012 3:39 PM To: java-user@lucene.apache.org Subject: RE: MemoryIndex "field m

RE: MemoryIndex "field must not be added more than once"

2012-03-07 Thread Uwe Schindler
.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de > -Original Message- > From: Stephen Howe [mailto:silentgun...@gmail.com] > Sent: Wednesday, March 07, 2012 7:44 PM > To: java-user@lucene.apache.org > Subject: Re: MemoryIndex "field must no

Re: MemoryIndex "field must not be added more than once"

2012-03-07 Thread Stephen Howe
Easiest way to do that would be to append all your values together and then add them in one pass. Unfortunately, you can only add a field + values once. -Stephen On Wed, Mar 7, 2012 at 9:39 AM, Dave Seltzer wrote: > I'm using a MemoryIndex to search in-memory content. > > I was wondering if the

MemoryIndex "field must not be added more than once"

2012-03-07 Thread Dave Seltzer
I'm using a MemoryIndex to search in-memory content. I was wondering if there's a way to specify multiple values for the same field in a MemoryIndex. I've tried addField but it throws an exception: index.addField("foobar", "value1", LuceneAnalyzer); index.addField("foobar", "value2", LuceneAnaly