update readme

This commit is contained in:
kimchy 2010-04-02 14:28:49 +03:00
parent 0794c808b9
commit 3e12600520
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ h3. Indexing
Lets try and index some twitter like information. First, lets create a twitter user, and add some tweets (the @twitter@ index will be created automatically):
<pre>
curl -XPUT 'http://localhost:9200/twitter/user/kimchy' -d '{ name: "Shay Banon" }'
curl -XPUT 'http://localhost:9200/twitter/user/kimchy' -d '{ "name" : "Shay Banon" }'
curl -XPUT 'http://localhost:9200/twitter/tweet/1' -d '
{
@ -126,7 +126,7 @@ ElasticSearch support multiple indices, as well as multiple types per index. In
Another way to define our simple twitter system is to have a different index per user. Here is the indexing curl's in this case:
<pre>
curl -XPUT 'http://localhost:9200/kimchy/info/1' -d '{ name: "Shay Banon" }'
curl -XPUT 'http://localhost:9200/kimchy/info/1' -d '{ "name" : "Shay Banon" }'
curl -XPUT 'http://localhost:9200/kimchy/tweet/1' -d '
{