Is there any guarantee in Solr/Lucene for the order of values in a stored
field?  For instance if we did the following

document.addField("text", "value 1");
document.addField("text", "value 2");
document.addField("text", "value 3");

is there a guarantee that the document will return the field

<arr name="text">
<str>value 1</str>
<str>value 2</str>
<str>value 3</str>
</arr>

or are there any instances in which this will not be the case and these
items could be returned in another order like

<arr name="text">
<str>value 3</str>
<str>value 1</str>
<str>value 2</str>
</arr>

Reply via email to