Elastic Search Query
Hi!! I am using Elasticsearch _plugin/head i.e., “http://localhost:9200/_plugin/head/” default port for elasticsearch is 9200 Creating index: Index is a collection of different type of documents and document properties. POST http://localhost:9200/check_index Response: {“acknowledged”: true} Adding data: PUT http://localhost:9200/_search/basics/sampledocs/1/ { “name”: “a”, “city”: “delhi”, “age”: 15 } Response: “_index”: “check_index”, “_type”: “check_type”, “_id”: “1”, “_version”: 1, “_shards”: […]
Read more "Elastic Search Query"