Mar 11

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

Tagged with:
Mar 09

PUT

  • It is used to create new resource or overwrite it.
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

  • It is used to update (overwrite) an existing resource
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

Tagged with:
preload preload preload