Has lucene search engine (Not Solr) REST API for querying the indexed content?
问题 How to query the indexed content in Lucene. Do we need to write any script or any api's available to query the index. 回答1: How to query the indexed content in Lucene? You write a Java class using ÌndexReader and ÌndexSearcher classes of Lucene API. You need to build a query and pass on to searcher instance as parameter. There is no automatic REST point. Lucene is simply an API, originally in Java then later ported to.NET too so either you can use Java or C# to develop your index creator as