Mappings
If not stated otherwise, the following mappings will be used for the rest of the chapter:
{ "book" : { "_index" : { "enabled" : true }, "_id" : { "index": "not_analyzed", "store" : "yes" }, "properties" : { "author" : { "type" : "string" }, "characters" : { "type" : "string" }, "copies" : { "type" : "long", "ignore_malformed" : false }, "otitle" : { "type" : "string" }, "tags" : { "type" : "string" }, "title" : { "type" : "string" }, "year" : { "type" : "long", "ignore_malformed" : false, "index" : "analyzed" }, "available" : { "type" : "boolean", "index" : "analyzed" } } } }
Note
Please note that the string-based fields will be analyzed if not stated otherwise.
The preceding mappings were used to create the library
index. In order to run that, use...