RESTful API with JSON over HTTP
创建索引
{
"setting":{
"number_of_shards":5,
"number_of_replicas":1
},
"mappings":{
"man":{
"properties":{
"name":{
"type":"text"
},
"country":{
"type":"keyword"
},
"age":{
"type":"integer"
},
"date":{
"type":"date",
"format":"yyyy-MM-dd HH:mm::ss||yyyy-MM-dd||epoch_millis"
}
}
}
}
}
创建结构
结构化创建 需要利用mappings 结构化关键词。
{
"cs": {
"properties": {
"title": {
"type": "text"
}
}
}
}
插入数据
- 1.指定文档ID插入
{
"name":"张仁杰",
"country":"China",
"age":30,
"date":"1987-06-01"
}
- 2.自动产生文档ID插入
{
"name":"张惠",
"country":"China",
"age":28,
"date":"1990-11-01"
}
修改数据
- 1.直接修改
{
"doc":{
"name":"Jack",
"age":31
}
}
- 2.通过脚本方式修改
painless内置的脚本语言
ctx._source.age+=10
ctx上下文
source当前文档
{
"script":{
"lang":"painless",
"inline":"ctx._source.age-=10"
}
}
{
"script":{
"lang":"painless",
"inline":"ctx._source.age=params.age",
"params":{
"age":"100"
}
}
}
删除操作
- 1.删除文档
- 2.删除索引
DELETE http://127.0.0.1:9200/people
原文地址:http://blog.51cto.com/phpme/2344993
时间: 2024-11-09 09:54:43