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

org.elasticsearch.plugin.query.acrossvariants.AcrossVariantsIndexQueryParserModule Maven / Gradle / Ivy

Go to download

The AcrossField query plugin for ElasticSearch provides with a new query type that matching terms across multiple fields, instead of needing them to all match against any, but single, field.

There is a newer version: 1.5.0
Show newest version
package org.elasticsearch.plugin.query.acrossvariants;

import org.elasticsearch.common.inject.AbstractModule;
import org.elasticsearch.index.query.RegisterAcrossVariantsQueryParsers;

public class AcrossVariantsIndexQueryParserModule extends AbstractModule {

    @Override
    protected void configure() {
        bind(RegisterAcrossVariantsQueryParsers.class).asEagerSingleton();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy