lib/elasticsearch/api/actions/mtermvectors.rb in elasticsearch-api-7.4.0 vs lib/elasticsearch/api/actions/mtermvectors.rb in elasticsearch-api-7.5.0.pre.pre
- old
+ new
@@ -3,74 +3,78 @@
# See the LICENSE file in the project root for more information
module Elasticsearch
module API
module Actions
-
- # Returns information and statistics about terms in the fields of multiple documents
- # in a single request/response. The semantics are similar to the {#mget} API.
+ # Returns multiple termvectors in one request.
#
- # @example Return information about multiple documents in a specific index
- #
- # subject.mtermvectors index: 'my-index', type: 'my-type', body: { ids: [1, 2, 3] }
- #
# @option arguments [String] :index The index in which the document resides.
# @option arguments [String] :type The type of the document.
- # @option arguments [Hash] :body Define ids, documents, parameters or a list of parameters per document here. You must at least provide a list of document ids. See documentation.
# @option arguments [List] :ids A comma-separated list of documents ids. You must define ids as parameter or set "ids" or "docs" in the request body
# @option arguments [Boolean] :term_statistics Specifies if total term frequency and document frequency should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
# @option arguments [Boolean] :field_statistics Specifies if document count, sum of document frequencies and sum of total term frequencies should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
# @option arguments [List] :fields A comma-separated list of fields to return. Applies to all returned documents unless otherwise specified in body "params" or "docs".
# @option arguments [Boolean] :offsets Specifies if term offsets should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
# @option arguments [Boolean] :positions Specifies if term positions should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
# @option arguments [Boolean] :payloads Specifies if term payloads should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
# @option arguments [String] :preference Specify the node or shard the operation should be performed on (default: random) .Applies to all returned documents unless otherwise specified in body "params" or "docs".
# @option arguments [String] :routing Specific routing value. Applies to all returned documents unless otherwise specified in body "params" or "docs".
- # @option arguments [String] :parent Parent id of documents. Applies to all returned documents unless otherwise specified in body "params" or "docs".
# @option arguments [Boolean] :realtime Specifies if requests are real-time as opposed to near-real-time (default: true).
# @option arguments [Number] :version Explicit version number for concurrency control
- # @option arguments [String] :version_type Specific version type (options: internal, external, external_gte, force)
+ # @option arguments [String] :version_type Specific version type
+ # (options: internal,external,external_gte,force)
+
+ # @option arguments [Hash] :body Define ids, documents, parameters or a list of parameters per document here. You must at least provide a list of document ids. See documentation.
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-multi-termvectors.html
+ # *Deprecation notice*:
+ # Specifying types in urls has been deprecated
+ # Deprecated since version 7.0.0
#
- # @see #mget
- # @see #termvector
#
- def mtermvectors(arguments={})
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/docs-multi-termvectors.html
+ #
+ def mtermvectors(arguments = {})
+ arguments = arguments.clone
ids = arguments.delete(:ids)
- method = HTTP_GET
- path = Utils.__pathify Utils.__escape(arguments[:index]),
- Utils.__escape(arguments[:type]),
- '_mtermvectors'
+ _index = arguments.delete(:index)
+ _type = arguments.delete(:type)
+
+ method = Elasticsearch::API::HTTP_GET
+ path = if _index && _type
+ "#{Utils.__listify(_index)}/#{Utils.__listify(_type)}/_mtermvectors"
+ elsif _index
+ "#{Utils.__listify(_index)}/_mtermvectors"
+ else
+ "_mtermvectors"
+end
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
if ids
body = { :ids => ids }
else
body = arguments[:body]
- end
-
+ end
perform_request(method, path, params, body).body
end
# Register this action with its valid params when the module is loaded.
#
- # @since 6.1.1
+ # @since 6.2.0
ParamsRegistry.register(:mtermvectors, [
- :ids,
- :term_statistics,
- :field_statistics,
- :fields,
- :offsets,
- :positions,
- :payloads,
- :preference,
- :routing,
- :parent,
- :realtime,
- :version,
- :version_type ].freeze)
+ :ids,
+ :term_statistics,
+ :field_statistics,
+ :fields,
+ :offsets,
+ :positions,
+ :payloads,
+ :preference,
+ :routing,
+ :realtime,
+ :version,
+ :version_type
+ ].freeze)
end
- end
+ end
end