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 <[email protected]> wrote:

> 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", LuceneAnalyzer);
>
> java.lang.IllegalArgumentException: field must not be added more than once
>
> Thanks!
>
> -Dave
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to