Slide 8
Slide 8 text
codecentric AG
Mapping
curl -XPUT 'http://localhost:9200/blog' -d '{mappings: {
article: {
properties: {
author: {
type: "string",
index: "not_analyzed"
},
content: {
type: "string",
index: "analyzed",
analyzer: "german"
},
comments: {
properties: {
author: { type: "string", index: "not_analyzed" },
text: { type: "string", index: "analyzed", analyzer: "german" }
}
}
}
}
}}'