In solr, is it possible to 'chain' copyfields so that you can copy the value of one into another?
Example: <field name="title" ... /> <field name="author" ... /> <field name="name" ... /> <field name="autocomplete" ... /> <field name="ac_spellcheck" ... /> <copyField source="title" dest="autocomplete" /> <copyField source="author" dest="autocomplete" /> <copyField source="name" dest="autocomplete" /> <copyField source="autocomplete" dest="ac_spellcheck" /> Point being, every time I add a new field to the autocomplete, I want it to automatically also be added to ac_spellcheck without having to do it twice. -- View this message in context: http://lucene.472066.n3.nabble.com/CopyField-into-another-CopyField-tp3122408p3122408.html Sent from the Solr - User mailing list archive at Nabble.com.