A couple of days ago I posted this: Returning documents using multi-valued field and I don't think I was clear. I'm new to Solr.
where as you can see I'm searching for keywords Alice AND Trudy. This query returns a document which contains:
<arr name="keyword_text_mv">
<str>alice jill</str>
<str>trudy alex</str>
</arr>
The problem is I'd like the document to be returned only if it contains a string "alice trudy" in one of its values, in other words, if it contains :
<arr name="keyword_text_mv">
<str>alice trudy</str>
<str>jill alex</str>
</arr>
Note that I'm not after "alice trudy" as a string in particular but there could be other words between alice and trudy.
How could I do this? Be gentle plz, I'm still new to the Solr world :) ... I'm supporting the code written by someone else.
Thanks in advance,
Krt_Malta