I'm using Elasticsearch to index and search my db...
- How can I verify that the database is indexed?
- If I use the following command: - curl -XGET 'http://localhost:9200/_search?q=whatever' 
the results are:
{
  "took": 4,
  "timed_out": false,
  "_shards": {
    "total": 6,
    "successful": 6,
    "failed": 0
  },
  "hits": {
    "total": 0,
    "max_score": null,
    "hits": []
  }
}
How should these results be interpreted?