Skip to content

Instantly share code, notes, and snippets.

@imotov
Created October 17, 2011 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imotov/1292966 to your computer and use it in GitHub Desktop.
Save imotov/1292966 to your computer and use it in GitHub Desktop.
Return only first 100 characters of the field message
curl -XGET 'http://localhost:9200/twitter/tweet/_search' -d '{
"query": {
"query_string" : {
"query" : "*:*"
}
},
"script_fields" : {
"short_message" : {
"script" : "msg = doc.message; msg.empty ? msg.stringValue : msg.stringValue.substring(0,min(100,msg.stringValue.length()))"
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment