Laravel/Scout - 如何获取文件总数?
Laravel/Scout - How to get total number of documents?
我在laravel scout中使用meilisearch引擎,是否可以获取文档(索引)总数?
如果你想知道一个索引有多少文档,你可以得到一个索引的统计信息:https://docs.meilisearch.com/reference/api/stats.html#get-stat-of-an-index
如果想获取一个索引的所有文档,可以使用GET documents路由,确保limit参数大于索引中的文档总数:
https://docs.meilisearch.com/reference/api/documents.html#get-documents
我在laravel scout中使用meilisearch引擎,是否可以获取文档(索引)总数?
如果你想知道一个索引有多少文档,你可以得到一个索引的统计信息:https://docs.meilisearch.com/reference/api/stats.html#get-stat-of-an-index
如果想获取一个索引的所有文档,可以使用GET documents路由,确保limit参数大于索引中的文档总数: https://docs.meilisearch.com/reference/api/documents.html#get-documents