Meilisearch 使用任务队列来处理异步操作。本文档描述了如何使用筛选器和分页来导航长任务队列。
/batches
limit
curl \ -X GET 'MEILISEARCH_URL/tasks?limit=2&from=10
{ "results": [ … ], "total": 50, "limit": 2, "from": 10, "next": 8 }
from
next
curl \ -X GET 'MEILISEARCH_URL/tasks?limit=2&from=8
{ "results": [ … ], "total": 50, "limit": 2, "from": 8, "next": 6 }
null
此页面有帮助吗?