How can I enable different analyzers for each field in a document I\'m indexing with Lucene? Example:
RAMDirectory dir = new RAMDirectory(); Ind
PerFieldAnalyzerWrapper is what you are looking for. The equivalent of this in Lucene.net is here.