Example usage for org.apache.solr.common.params CommonParams RQ

List of usage examples for org.apache.solr.common.params CommonParams RQ

Introduction

In this page you can find the example usage for org.apache.solr.common.params CommonParams RQ.

Prototype

String RQ

To view the source code for org.apache.solr.common.params CommonParams RQ.

Click Source Link

Document

rank query

Usage

From source file:org.alfresco.solr.component.RewriteFacetParametersComponent.java

License:Open Source License

@Override
public void prepare(ResponseBuilder rb) throws IOException {
    SolrQueryRequest req = rb.req;/*from   www  .  j av  a  2 s .c o m*/
    SolrParams params = req.getParams();

    ModifiableSolrParams fixed = new ModifiableSolrParams();
    ModifiableSolrParams allParamsWithFix = new ModifiableSolrParams(params);
    fixFilterQueries(fixed, params, rb);
    fixFacetParams(fixed, params, rb);
    fixRows(fixed, params, rb);

    Set<String> fixedParameterNames = fixed.getParameterNames();
    for (String fixedParam : fixedParameterNames) {
        allParamsWithFix.set(fixedParam, fixed.getParams(fixedParam));
    }

    if (allParamsWithFix.get(CommonParams.SORT) != null) {
        allParamsWithFix.remove(CommonParams.RQ);
    }

    req.setParams(allParamsWithFix);
}