Here is the reference in the documentation: https://lucene.apache.org/core/10_0_0/queryparser/org/apache/lucene/queryparser/flexible/standard/StandardQueryParser.html
Code: sqparser = StandardQueryParser() config = sqparser.getQueryConfigHandler() #config.setAllowLeadingWildcard(False); #config.setAnalyzer(analyzer) The commented lines are not available, how do you use StandardQueryParse? Prashant