Package org.elasticsearch.search.sort

Examples of org.elasticsearch.search.sort.ScriptSortBuilder


        client.admin().indices().prepareFlush("test").setFull(true).execute().actionGet();
        System.out.println("done");
    }

    static TimeValue timeQueries(Client client, String lang, String script, int numQueries) {
        ScriptSortBuilder sort = SortBuilders.scriptSort(script, "number").lang(lang);
        SearchRequestBuilder req = client.prepareSearch(indexName)
                .setQuery(QueryBuilders.matchAllQuery())
                .addSort(sort);

        StopWatch timer = new StopWatch();
View Full Code Here

TOP

Related Classes of org.elasticsearch.search.sort.ScriptSortBuilder

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.