Search in sources :

Example 1 with IndexResults

use of com.github.cleverage.elasticsearch.IndexResults in project play2-elasticsearch by cleverage.

the class Application method async.

public static F.Promise<Result> async() {
    // ElasticSearch HelloWorld
    IndexTest indexTest = new IndexTest();
    // "id" is mandatory if you want to update your document or to get by id else "id" is not mandatory
    indexTest.id = "1";
    indexTest.name = "hello World";
    indexTest.index();
    // ElasticSearch HelloWorld
    IndexTest indexTest2 = new IndexTest();
    // "id" is mandatory if you want to update your document or to get by id else "id" is not mandatory
    indexTest.id = "2";
    indexTest.name = "hello Bob";
    indexTest.index();
    IndexService.refresh();
    IndexQuery<IndexTest> query1 = IndexTest.find.query();
    query1.setBuilder(QueryBuilders.matchQuery("name", "hello"));
    IndexQuery<IndexTest> query2 = IndexTest.find.query();
    query2.setBuilder(QueryBuilders.matchQuery("name", "bob"));
    F.Promise<IndexResults<IndexTest>> indexResultsPromise1 = IndexTest.find.searchAsync(query1);
    F.Promise<IndexResults<IndexTest>> indexResultsPromise2 = IndexTest.find.searchAsync(query2);
    F.Promise<List<IndexResults<IndexTest>>> combinedPromise = F.Promise.sequence(indexResultsPromise1, indexResultsPromise2);
    return combinedPromise.map(new F.Function<List<IndexResults<IndexTest>>, Result>() {

        @Override
        public Result apply(List<IndexResults<IndexTest>> indexResultsList) throws Throwable {
            return ok(indexResultsList.get(0).totalCount + " - " + indexResultsList.get(1).totalCount);
        }
    });
}
Also used : IndexTest(indexing.IndexTest) F(play.libs.F) IndexResults(com.github.cleverage.elasticsearch.IndexResults) List(java.util.List) Result(play.mvc.Result)

Aggregations

IndexResults (com.github.cleverage.elasticsearch.IndexResults)1 IndexTest (indexing.IndexTest)1 List (java.util.List)1 F (play.libs.F)1 Result (play.mvc.Result)1