Although some of the differences are outdated, here is a very useful blog post comparing Amazon’s SimpleDB with couchDB:
http://www.automatthew.com/2007/12/amazon-simpledb-and-couchdb-compared.html
Although some of the differences are outdated, here is a very useful blog post comparing Amazon’s SimpleDB with couchDB:
http://www.automatthew.com/2007/12/amazon-simpledb-and-couchdb-compared.html
PUT
PUT /(action)/ HTTP/1.1 Host: example.com
will create a new resource. Similarly,
PUT /(action)/ HTTP/1.1 Host: example.com
will update your existing resource.
POST
POST /(action)/ HTTP/1.1 Host: example.com
will modify your resource. However,
POST /(action)/ HTTP/1.1 Host: example.com
will return a ‘resource not found’ error.
For more information visit W3.org