Hi , I'm trying to use MultiFieldQueryParser. But it is giving me an error. This is the code which I wrote for it.
* query = lucene.MultiFieldQueryParser(lucene.Version.LUCENE_CURRENT, ["payload","subject"], analyzer).parse(command) *The error 'm getting is this... *Traceback (most recent call last): File "SearchFiles.py", line 37, in <module> run(searcher, analyzer) File "SearchFiles.py", line 19, in run query = lucene.MultiFieldQueryParser(lucene.Version.LUCENE_CURRENT, ["payload","subject"], analyzer).parse(command) TypeError: descriptor 'parse' requires a 'QueryParser' object but received a 'str' *It would be helpful if the solution is given by an example. Thanks