Class and Description |
---|
org.elasticsearch.common.compress.CompressedIndexInput
Used only for backward comp. to read old compressed files, since we now use codec based compression
|
org.elasticsearch.index.query.FuzzyQueryBuilder
Fuzzy queries are not useful enough. This class will be removed with Elasticsearch 4.0. In most cases you may want to use
a match query with the fuzziness parameter for strings or range queries for numeric and date fields.
|
org.elasticsearch.index.query.IndicesQueryBuilder
instead search on the `_index` field
|
org.elasticsearch.index.analysis.SnowballAnalyzer
(3.1) Use the language-specific analyzer in modules/analysis instead.
This analyzer WAS removed in Lucene 5.0
|
Annotation Type and Description |
---|
org.elasticsearch.common.inject.assistedinject.AssistedInject
FactoryProvider now works better with the standard @Inject
annotation. When using that annotation, parameters are matched by name and type rather than
by position. In addition, values that use the standard @Inject constructor
annotation are eligible for method interception. |
Field and Description |
---|
org.elasticsearch.index.query.MatchQueryBuilder.DEFAULT_TYPE |
org.elasticsearch.gateway.PrimaryShardAllocator.INDEX_RECOVERY_INITIAL_SHARDS_SETTING |
org.elasticsearch.index.percolator.PercolatorFieldMapper.LEGACY_TYPE_NAME |
org.elasticsearch.script.ScriptService.SCRIPT_FILE
Use
ScriptService.ScriptType.getParseField() instead. This should
be removed in 2.0 |
org.elasticsearch.script.ScriptService.SCRIPT_ID
Use
ScriptService.ScriptType.getParseField() instead. This should
be removed in 2.0 |
org.elasticsearch.script.ScriptService.SCRIPT_INLINE
Use
ScriptService.ScriptType.getParseField() instead. This should
be removed in 2.0 |
org.elasticsearch.script.ScriptService.SCRIPT_LANG
Use
Script.ScriptField instead. This should be removed in
2.0 |
org.elasticsearch.common.network.NetworkUtils.SUPPORTS_V6
transition mechanism only, do not use
|
Constructor and Description |
---|
org.elasticsearch.index.query.IndicesQueryBuilder(QueryBuilder<?>, String...)
instead search on the `_index` field
|
org.elasticsearch.index.analysis.StandardHtmlStripAnalyzer() |
org.elasticsearch.index.query.TemplateQueryBuilder(String, Map<String, Object>)
Use
TemplateQueryBuilder.TemplateQueryBuilder(Template) instead. |
org.elasticsearch.index.query.TemplateQueryBuilder(String, ScriptService.ScriptType, Map<String, Object>)
Use
TemplateQueryBuilder.TemplateQueryBuilder(Template) instead. |
Enum Constant and Description |
---|
org.elasticsearch.index.translog.Translog.Operation.Type.CREATE |
org.elasticsearch.index.IndexModule.Type.DEFAULT |
org.elasticsearch.common.geo.GeoDistance.SLOPPY_ARC |