I am trying to put together an index using terms, which I specify as a comma separated list. I want to replicate the display in Luke as seen here:

http://ayende.com/Blog/archive/2009/05/03/nhibernate-search-again.aspx

But my index value just shows as a single field with the comma separate list value. For example:

Tags term,anotherterm

When I search my index, it will return results if I search with "term" but will not return anything if I search with "anotherterm"

I thought the indexing process would break the comma separate list apart into separate values but this does not seem to be the case.

Anyone got any ideas?

Thanks

link|improve this question

feedback

2 Answers

The collection to index is ISet<T> and I suspect that T is a type with [Indexed] attribute and has a property Name marked with [Field] attribute.

link|improve this answer
feedback
up vote 0 down vote accepted

This was answered as part of this question:

http://stackoverflow.com/questions/2549155/lucene-net-search-index-approach/2581447#2581447

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.