GET /twitter/_search
{
"query": {
"match_all": {}
}
}
PUT /twitter/_doc/1?refresh
{
"fullname": "zhengcj01",
"text":"hello"
}
PUT /twitter/_doc/2?refresh=true
{
"fullname": "dongyc",
"text":"how do you do"
}
PUT /twitter/_doc/3
{
"fullname": "liuhh",
"text":"hello"
}
PUT /twitter/_doc/4?refresh=false
{
"fullname": "zhengzj",
"text":"how do you do"
}
PUT /twitter/_doc/5?refresh=wait_for
{
"fullname": "zhengwj",
"text":"how do you do"
}
optimistic concurrency control
PUT products/_doc/1567?if_seq_no=362&if_primary_term=2
{
"product" : "r2d2",
"details" : "A resourceful astromech droid",
"tags": ["droid"]
}