Method: Meilisearch::Client#tasks
- Defined in:
- lib/meilisearch/client.rb
#tasks(options = {}) ⇒ Hash{String => Object}
Get Meilisearch tasks matching the filters.
Operations in Meilisearch are done asynchronously using “tasks”. Tasks report their progress and status.
Warning: This does not return instances of Models::Task. This is a raw call to the Meilisearch API and the return is not modified.
408 409 410 |
# File 'lib/meilisearch/client.rb', line 408 def tasks( = {}) task_endpoint.task_list() end |