All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.graphaware.module.es.util.CustomJestClientFactory Maven / Gradle / Ivy

There is a newer version: 3.5.14.58.10
Show newest version
package com.graphaware.module.es.util;

import io.searchbox.client.JestClientFactory;
import org.apache.http.impl.client.HttpClientBuilder;

public class CustomJestClientFactory extends JestClientFactory {

    @Override
    protected HttpClientBuilder configureHttpClient(HttpClientBuilder builder) {
        return builder
                .setConnectionManagerShared(true);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy