"Keith C. Perry" <netadmin@vcsn.com> writes:
> Additionally, I almost always use POST methods instead of GET
> (I hate exposing application logic that way).
Well this is pretty far afield from postgres. But I hope you're not using POST
for idempotent operations like search or record lookups. I hate it when I'm on
a site and i can't bookmark pages usefully or use the back button or open
pages in new windows etc.
POST is ideally only used for non idempotent operations like updates, deletes,
etc. Things that you wouldn't want to be repeated when the user hits reload,
and wouldn't want repeated every time a user revisits a bookmark.
--
greg