Examples of similarity()


Examples of org.elasticsearch.index.mapper.FieldMapper.similarity()

        }

        @Override
        public Similarity get(String name) {
            FieldMapper mapper = mapperService.smartNameFieldMapper(name);
            return (mapper != null && mapper.similarity() != null) ? mapper.similarity().get() : defaultSimilarity;
        }
    }
}
View Full Code Here

Examples of org.elasticsearch.index.mapper.FieldMapper.similarity()

        }

        @Override
        public Similarity get(String name) {
            FieldMapper mapper = mapperService.smartNameFieldMapper(name);
            return (mapper != null && mapper.similarity() != null) ? mapper.similarity().get() : defaultSimilarity;
        }
    }
}
View Full Code Here

Examples of org.elasticsearch.index.mapper.FieldMapper.similarity()

                if (type.docValueType() != null) {
                    mapper.put("docValueType", type.docValueType().name());
                }
            }

            SimilarityProvider similarityProvider = fieldMapper.similarity();
            if (similarityProvider != null) {
                mapper.put("similarityPovider", similarityProvider.name());
                mapper.put("similarity", similarityProvider.get().getClass().getName() );
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.