In Lucene, using a Standard Analyzer, I want to make fields with spaces and special characters(underscore,!,@,#,....) searchable.
I set IndexField to NOT_ANALYZED_NO_NORMS and Field.Store.YES
When I look at my index in LUKE, the fields are as I expected, a value such as:
'SKU Number', yet when I search for 'SKU' or 'SKU*' nothing comes up.
What am I missing?