I am calling Lucene using the following code (PyLucene, to be precise):
analyzer = StandardAnalyzer(Version.LUCENE_30) queryparser = QueryParser(Version.LUCENE_30, "text", analyzer) query = queryparser.parse(queryparser.escape(querytext))
querytext
querytext = "THE FOOD ...
Following on from my earlier question: Manipulate Lucene query before performing search I've run into a problem where I'm wanting to send a QueryParser parsed Query (Query.toString()) onto a webservice that uses ...
QueryParser
Query
Query.toString()