Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active February 23, 2019 14:10
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 garystafford/f768548b3d73679a0e813a7dc0fab967 to your computer and use it in GitHub Desktop.
Save garystafford/f768548b3d73679a0e813a7dc0fab967 to your computer and use it in GitHub Desktop.
curl -X POST \
"${SOLR_URL}/movies/schema" \
-H 'Content-Type: application/json' \
-d '{
"replace-field":{
"name":"title",
"type":"text_en",
"multiValued":false
},
"replace-field":{
"name":"plot",
"type":"text_en",
"multiValued":false
},
"replace-field":{
"name":"genres",
"type":"text_en",
"multiValued":true
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment