I'm missing some stuff here. The analysis page has nothing to do with actual indexing. All it does is take the input and run it through the defined chains and show what tokens come out the other end and why. There's really nothing to do whatsoever with multiValued, that's just orthogonal to what analysis.jsp is meant for.
For inputting sample data, assuming you're doing XML input and your multiValued field is named multi, it's something like this: <doc> <field name="multi">some data for field</field> <field name="multi">more data with a gap between </field> </doc> If you're using SolrJ, it's something like doc.addField("multi", "some data for field"); doc.addFIeld("multi", "more data with a gap between"); etc. Does that help? Erick On Thu, Jan 19, 2012 at 6:20 AM, Nicholas Fellows <n...@djdownload.com> wrote: > Heya, > Question for you guys, Im trying to use the solr "analysis.jsp" > toolto debug a solr query. I cant work out how to input sample data > for the Field Value (Index)box when the data is multiValued. > I was wondering if you could explain how to do this or point me to > thedocumentation where this is explained(as i've not found anything > helpful). > I am of course assuming that the analyser supports multiValued data. > Help Greatfully Appreciated! > Cheers > -- > Nick Fellows > DJdownload.com