es基本查询
put /new_test
{
"mappings": {
"properties": {
"author": {
"type": "text"
},
"characters": {
"type": "text"
},
"copies": {
"type": "long"
},
"otitle": {
"type": "text"
},
"tags": {
"type": "keyword"
},
"title": {
"type": "text"
},
"year": {
"type": "long"
},
"available": {
"type": "boolean"
},
"review": {
"type": "nested",
"properties": {
"nickname": {
"type": "text"
},
"text": {
"type": "text"
},
"stars": {
"type": "integer"
}
}
}
}
}
}
post /new_test/_bulk
{ "index" : { "_id" : "1" } }
{"title":"All Quiet on the Western Front","otitle":"Im Westen nichts Neues","author":"Erich Maria Remarque","year":1929,"characters":["Paul Bäumer","Albert Kropp","Haie Westhus","Fredrich Müller","Stanislaus Katczinsky","Tjaden"],"tags":["novel"],"copies":1,"available":true,"section":3}
{"index":{"_id":"2"}}
{"title":"Catch-22","author":"Joseph Heller","year":1961,"characters":["John Yossarian","Captain Aardvark","Chaplain Tappman","Colonel Cathcart","Doctor Daneeka"],"tags":["novel"],"copies":6,"available":false,"section":1}
{"index":{"_id":"3"}}
{"title":"The Complete Sherlock Holmes","author":"Arthur Conan Doyle","year":1936,"characters":["Sherlock Holmes","Dr. Watson","G. Lestrade"],"tags":[],"copies": 0, "available":false, "section":12}
get /new_test/_search
{
"query":{
"range":{
"copies":{
"gte":1,
"lte":3
}
}
}
}
- 找出所有至少有一本的书籍,并对1950年后出版的书籍进行加权
get /new_test/_search
{
"query":{
"bool":{
"must":[{"range":{"copies":{"gte":1}}}],
"should":[{"range":{"year":{"gt":1950}}}]
}
}
}
get /new_test/_search
{
"query":{
"term":{
"tags":"novel"
}
}
}
get /new_test/_search
{
"query":{
"prefix":{
"title":"qu"
}
}
}
get /new_test/_search
{
"query":{
"match_phrase":{
"otitle":"nichts"
}
}
}