curl -XDELETE http://localhost:9200/information_v1/news/_mapping?pretty curl -XDELETE http://localhost:9200/information_v1/?pretty curl -XPUT http://localhost:9200/information_v1 curl -XPOST http://localhost:9200/information_v1/news/_mapping?pretty -d' { "news": { "_all": { "analyzer": "ik_max_word", "search_analyzer": "ik_max_word", "term_vector": "no", "store": "false" }, "properties": { "id": { "type": "long" }, "title": { "type": "string", "store": "no", "term_vector": "with_positions_offsets", "analyzer": "ik_max_word", "search_analyzer": "ik_max_word", "include_in_all": "true", "boost": 8 }, "content": { "type": "string", "store": "no", "term_vector": "with_positions_offsets", "analyzer": "ik_max_word", "search_analyzer": "ik_max_word", "include_in_all": "true", "boost": 8 }, "tag": { "type": "string", "store": "no", "term_vector": "with_positions_offsets", "analyzer": "ik_max_word", "search_analyzer": "ik_max_word", "include_in_all": "true", "boost": 8 }, "ctime": { "type": "date" } } } }' curl -XPOST http://localhost:9200/_aliases -d ' { "actions": [ { "add": { "alias": "information", "index": "information_v1" }} ] } ' curl -XGET http://localhost:9200/information/?pretty curl -XPOST 'http://localhost:9200/information/news/1?pretty' -d '{ "id":1, "title":"新聞標題", "content":"新聞內容", "tag":"新聞標籤", "ctime":"2011-11-11T11:11:11" }' # curl -XGET 'http://localhost:9200/information/news/1?pretty' { "_index" : "information_v1", "_type" : "news", "_id" : "1", "_version" : 1, "found" : true, "_source" : { "id" : 1, "title" : "新聞標題", "content" : "新聞內容", "tag" : "新聞標籤", "ctime" : "2011-11-11T11:11:11" } } curl -XPOST http://localhost:9200/information/news/_search?pretty -d' { "query" : { "term" : { "content" : "新聞" }}, "highlight" : { "pre_tags" : ["<b>", "<b>"], "post_tags" : ["</b>", "</b>"], "fields" : { "content" : {} } } }' curl -XPOST http://localhost:9200/information/news/_search -d' { "query" : { "term" : { "content" : "王寶強" }}, "highlight" : { "pre_tags" : ["<b>", "<b>"], "post_tags" : ["</b>", "</b>"], "fields" : { "content" : {} } } }' curl -XPOST http://localhost:9200/information/news/_search -d' { "query" : { "term" : { "tag" : "娛樂" }}, "highlight" : { "pre_tags" : ["<b>", "<b>"], "post_tags" : ["</b>", "</b>"], "fields" : { "tag" : {} } } }'
curl -XDELETE http://localhost:9200/information curl -XPUT http://localhost:9200/information curl -H 'Content-Type: application/json' -XPOST http://localhost:9200/information/article/_mapping -d' { "properties": { "title": { "type": "text", "analyzer": "ik_max_word", "search_analyzer": "ik_max_word" }, "description": { "type": "text", "analyzer": "ik_max_word", "search_analyzer": "ik_max_word" }, "content": { "type": "text", "analyzer": "ik_max_word", "search_analyzer": "ik_max_word" }, "ctime": { "type": "date", "format": "yyyy-MM-dd HH:mm:ss" }, "mtime": { "type": "date", "format": "yyyy-MM-dd HH:mm:ss" } } }' curl "http://localhost:9200/information/article/_mapping?pretty"