1

データベースのインデックス作成と検索に Elasticsearch を使用しています...

  1. データベースにインデックスが作成されていることを確認するにはどうすればよいですか?
  2. 次のコマンドを使用すると:

    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": []
  }
}

これらの結果はどのように解釈されるべきですか?

4

2 に答える 2