I have a Lucene index which:
- always contains field Title
- may contain field Tag (depending on data that's being indexed)
I have a requirement to sort search results by Title and Tag fields. At the moment, if none of the documents in the index contain Tag field, the search throws an SystemException: "field "Tag" does not appear to be indexed".
I am aware this behaviour is by design.
Is there a way to tell Lucene to optionally sort by Tag field if it exists?