module Elasticsearch module API module Actions # Get the number of documents for the cluster, index, type, or a query. # # @example Get the number of all documents in the cluster # # client.count # # @example Get the number of documents in a specified index # # client.count index: 'myindex' # # @example Get the number of documents matching a specific query # # index: 'my_index', body: { filtered: { filter: { terms: { foo: ['bar'] } } } } # # @option arguments [List] :index A comma-separated list of indices to restrict the results # @option arguments [List] :type A comma-separated list of types to restrict the results # @option arguments [Hash] :body A query to restrict the results (optional) # @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore `missing` ones # (options: none, missing) # @option arguments [Number] :min_score Include only documents with a specific `_score` value in the result # @option arguments [String] :preference Specify the node or shard the operation should be performed on # (default: random) # @option arguments [String] :routing Specific routing value # @option arguments [String] :source The URL-encoded query definition (instead of using the request body) # # @see http://elasticsearch.org/guide/reference/api/count/ # def count(arguments={}) valid_params = [ :ignore_indices, :min_score, :preference, :routing, :source ] method = 'GET' path = Utils.__pathify( Utils.__listify(arguments[:index]), Utils.__listify(arguments[:type]), '_count' ) params = Utils.__validate_and_extract_params arguments, valid_params body = arguments[:body] perform_request(method, path, params, body).body end end end end