I know it's possible to specify a custom Lucene Analyzer
when creating a Neo4j index like this:
Index<Node> index= indexManager.forNodes("index", MapUtil.stringMap(
IndexManager.PROVIDER, "lucene",
"analyzer", MyAnalyzer.class.getName()
));
Is it possible to specify which Lucene Analyzer
the automatic indexer should employ?