
org.codelibs.elasticsearch.minhash.module.MinHashAnalysisModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-minhash Show documentation
Show all versions of elasticsearch-minhash Show documentation
This plugin provides b-bit minhash algorism.
package org.codelibs.elasticsearch.minhash.module;
import org.codelibs.elasticsearch.minhash.indices.analysis.MinHashIndicesAnalysis;
import org.elasticsearch.common.inject.AbstractModule;
public class MinHashAnalysisModule extends AbstractModule {
@Override
protected void configure() {
bind(MinHashIndicesAnalysis.class).asEagerSingleton();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy