Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. curl -X PUT 'localhost:9200/cambio_indice?pretty=true' -d '{
  2. "mappings" : {
  3. "el_tipo" : {
  4. "properties" : {
  5. "name" : { "type" : "string" },
  6. "age" : { "type" : "integer" },
  7. "read" : { "type" : "integer" }
  8. }}}}'
  9.  
  10. curl -X PUT 'localhost:9200/cambio_indice/el_tipo/1?pretty=true' -d '{
  11. "name" : "Eduardo Inda",
  12. "age" : 23
  13. }'
  14.  
  15. curl -X PUT 'localhost:9200/cambio_indice/el_tipo/2?pretty=true' -d '{
  16. "jose" : "stuff",
  17. "ramon" : 23,
  18. "garcia" : 1
  19. }'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement