Example usage for org.apache.solr.util SolrPluginUtils doSimpleQuery

List of usage examples for org.apache.solr.util SolrPluginUtils doSimpleQuery

Introduction

In this page you can find the example usage for org.apache.solr.util SolrPluginUtils doSimpleQuery.

Prototype

public static DocList doSimpleQuery(String sreq, SolrQueryRequest req, int start, int limit)
        throws IOException 

Source Link

Document

Executes a basic query

Usage

From source file:de.qaware.chronix.solr.query.analysis.providers.SolrDocListProvider.java

License:Apache License

@Override
public DocList doSimpleQuery(String q, SolrQueryRequest req, int start, int limit) throws IOException {
    return SolrPluginUtils.doSimpleQuery(q, req, start, limit);
}