Package com.dotcms.repackage.org.elasticsearch.action.count

Examples of com.dotcms.repackage.org.elasticsearch.action.count.CountRequestBuilder


        else
            indexToHit=info.working;

        Client client=new ESClient().getClient();
        QueryStringQueryBuilder qb = QueryBuilders.queryString(qq);
        CountRequestBuilder crb = client.prepareCount();
        crb.setQuery(qb);
        crb.setIndices(indexToHit);
        return crb.execute().actionGet().getCount();
  }
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.org.elasticsearch.action.count.CountRequestBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.