I have a Lucene index built using an analyzer. I am using the index to search for content and in most of the cases I would need an analyzer.
Now, in few cases where suppose I want to just look for a text in a field without the effect of the analyzer, is it still possible to look into a field of the same index? How should I go about constructing the query?
If I use a wildcardquery, it will still look inside the analyzed text, while I want to do a search in the raw text.