I am following the definitive guide. I added this docume by issue this in 
sense
PUT /megacorp/employee/1
{
    "first_name" : "John",
    "last_name" :  "Smith",
    "age" :        25,
    "about" :      "I love to go rock climbing",
    "interests": [ "sports", "music" ]
}

when I try to retrieve the docoment
by doing this 

GET /megacorp/employee/1

But I didn't get original json back. It get some description of the stored 
document like this. 
{
   "_index": "megacorp",
   "_type": "employee",
   "_id": "1",
   "_version": 2,
   "found": true
}.

I did this on command line using cur. Same result come back.

What do I missing? Thanks,

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/73171fd0-dc65-4c3d-9493-5e6b9f62a6ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to