我正在使用 Elasticsearch 来索引和搜索我的数据库...
- 如何验证数据库是否已编入索引?
如果我使用以下命令:
curl -XGET ' http://localhost:9200/_search?q=whatever '
结果是:
{
"took": 4,
"timed_out": false,
"_shards": {
"total": 6,
"successful": 6,
"failed": 0
},
"hits": {
"total": 0,
"max_score": null,
"hits": []
}
}
应该如何解释这些结果?