Chinaunix首页 | 论坛 | 博客
  • 博客访问: 619270
  • 博文数量: 69
  • 博客积分: 1891
  • 博客等级: 上尉
  • 技术积分: 1359
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-20 23:38
文章分类

全部博文(69)

文章存档

2012年(46)

2011年(23)

分类: Python/Ruby

2011-11-20 14:25:09

Operation on Database
1、create a database
     curl -X PUT
2、get all dbs
     curl -X GET
3、Delete a database
     curl -X DELETE

Operation On Document
1、create a ducoment
   curl -X PUT /johndoe -d '{"firstName":"Joe","lastName":"Lennon","email":"joe@joelennon.ie"}'
2、get a ducoment
   curl -X GET /johndoe
3、delete a document
  curl -X DELETE
/johndoe?rev=1-1-967a00dff5e02add41819138abb3284d
 4、copy a ducoment to another id
curl -X COPY /joelennon -H "Destination: johnsmith"
 5、update a document
 curl -X PUT /johnsmith -d '{"_rev":"1-
4152282996","firstName":"John","lastName":"Smith","email":["johnsmith@example.com","jsmith@e
xample.com"],"phone":"(555) 555-5555"}'
阅读(1162) | 评论(0) | 转发(0) |
0

上一篇:解决java中文乱码

下一篇:CouchDb View

给主人留下些什么吧!~~