I have a multi-value stored field called "details" I've been deliberately sending it values like
<Something to use as a source node> If I fetch a document with that field at the admin query console, using XML, I get: <arr name="details"> <str><Something to use as a source node></str> </arr> If I fetch with JSON, I get: "details": [ "" ], Even more curious, if I use this query at the console: details:<Something to use as a source node> I get nothing back. I think I'm having an identity crisis in relation to escaping characters at SolrJ. The values are going up, and when the query is to bring the document back, they come back. But, as individuals values, they don't appear to submit to query. If I actually escape them going up, then the document is full of escaped characters, which can be troublesome when fetching and using. Any thoughts? Many thanks Jack