
org.codelibs.elasticsearch.dynarank.module.DynamicRankerModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-dynarank Show documentation
Show all versions of elasticsearch-dynarank Show documentation
This plugin provides a feature to re-rank a search result at the search time.
package org.codelibs.elasticsearch.dynarank.module;
import org.codelibs.elasticsearch.dynarank.ranker.DynamicRanker;
import org.elasticsearch.common.inject.AbstractModule;
public class DynamicRankerModule extends AbstractModule {
@Override
protected void configure() {
bind(DynamicRanker.class).asEagerSingleton();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy