lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, May 27, 2010 at 11:13 AM, gary ng <garyng2000@yahoo.com> wrote:
> http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/
>
> You can see that amazon use GET to perform side effects. It may be their poor choice but what I meant to say is, there really are sites out there using GET for everything.

Sure there are sites out there using GET for everything:
http://thedailywtf.com/articles/the_spider_of_doom.aspx

This is one of the reasons why GET should not have side effects, and
POST must not be cached.

--rb