Method: Meilisearch::Client#batches

Defined in:
lib/meilisearch/client.rb

#batches(options = {}) ⇒ Hash{String => Object}

Get Meilisearch task batches matching the filters.

Operations in Meilisearch are done asynchronously using “tasks”. Tasks are run in batches.

Parameters:

  • options (Hash{Symbol => Object}) (defaults to: {})

    task search options as snake cased symbols, see the API reference

Returns:

  • (Hash{String => Object})

    results of the batches search, see API reference

See Also:



451
452
453
# File 'lib/meilisearch/client.rb', line 451

def batches(options = {})
  http_get '/batches', options
end