index_status
ReQL command: index_status
Command syntax
table.index_status([, index...]) → array
Description
Get the status of the specified indexes on this table, or the status of all indexes on this table if no indexes are specified.
The result is an array where for each index, there will be an object like this one:
{ "index": <index_name>, "ready": True, "function": <binary>, "multi": <bool>, "outdated": <bool> }
or this one:
{ "index": <index_name>, "ready": False, "progress": <float>, "function": <binary>, "multi": <bool>, "outdated": <bool> }
The multi
field will be true
or 登录查看完整内容