世界上并没有完美的程序,但是我们并不因此而沮丧,因为写程序就是一个不断追求完美的过程。
-侯氏工坊
DELETE index_match_phrase
PUT index_match_phrase
{
"mappings": {
"properties": {
"content": {"type": "text"}
}
}
}
GET index_match_phrase/_mapping
POST index_match_phrase/_doc/1
{
"content": "my favorite food is cold porridge"
}
POST index_match_phrase/_doc/2
{
"content": "when it's cold my favorite food is porridge"
}
POST index_ma