Package com.codetroopers.play.elasticsearch.jest

Examples of com.codetroopers.play.elasticsearch.jest.JestRichResult


        });
    }

    public IndexResults<T> executeSearchRequest(JestSearchRequestBuilder request) {

        JestRichResult searchResponse = request.execute();

        if (IndexClient.config.showRequest && searchResponse != null) {
            Logger.debug("ElasticSearch : Response -> " + searchResponse.getJsonString());
        }

        return toSearchResults(searchResponse);
    }
View Full Code Here


        });
    }

    public IndexResults<T> executeSearchRequest(JestSearchRequestBuilder request) {

        JestRichResult searchResponse = request.execute();

        if (IndexClient.config.showRequest && searchResponse != null) {
            Logger.debug("ElasticSearch : Response -> " + searchResponse.getJsonString());
        }

        return toSearchResults(searchResponse);
    }
View Full Code Here

TOP

Related Classes of com.codetroopers.play.elasticsearch.jest.JestRichResult

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.