Hello,

After a Solr query, I always get the fields back in alphabetical order, no matter how I insert them.
Is this the normal behaviour?

This is when adding the document...
   <doc>
       <field name="uid">ch.tsr.esg.domain.ProgramCollection[id: 1]</field>
       <field name="genre">collection</field>
       <field name="collection">Bac à sable</field>
<field name="collection.url">http://localhost:8080/esg/api/collections/1</field>
   </doc>

... and this is when retrieving it:
       <doc>
           <str name="collection">Bac à sable</str>
<str name="collection.url">http://localhost:8080/esg/api/collections/1</str>
           <str name="genre">collection</str>
           <str name="uid">ch.tsr.esg.domain.ProgramCollection[id: 1]</str>
       </doc>

Thanks a lot,
Pierre Auslaender

Reply via email to