Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $ curl -XPOST localhost:9200/test -d '{"mappings": {"BOOSTER": {"properties": {"boostable_str": { "type": "string", "index": "not_analyzed", "omit_norms": "false" }}}}}'
- {"ok":true,"acknowledged":true}
- $ curl -XPUT localhost:9200/test/BOOSTER/DOC-1 -d '{ "boostable_str": {"_value": "boosty string", "_boost": 5}}'
- {"ok":true,"_index":"test","_type":"BOOSTER","_id":"DOC-1","_version":1}
- $ curl -XGET localhost:9200/test/BOOSTER/_mapping?pretty=Y
- {
- "BOOSTER" : {
- "properties" : {
- "boostable_str" : {
- "type" : "string",
- "index" : "not_analyzed"
- }
- }
- }
- }
- $ curl -XGET localhost:9200/test/BOOSTER/DOC-1?pretty=Y
- {
- "_index" : "test",
- "_type" : "BOOSTER",
- "_id" : "DOC-1",
- "_version" : 1,
- "exists" : true, "_source" : { "boostable_str": {"_value": "boosty string", "_boost": 5}}
- }
Advertisement
Add Comment
Please, Sign In to add comment