tags:

views:

789

answers:

5

Hi All,

I am just new to web programming and just curious to know abt Get and Post methods of sending data from one page to another page.

It is said that Get method is faster than Post but i don't know why is it one reason i could find is that Get can take only 255 chars with it? Is there any other reasons , please someone explain me?

+5  A: 

It's not much about speed. There are plenty of cases where POST is more applicable. For example, search engines will index GET URLs and browsers can bookmark them and make them show up in history. As a result, if you take actions like modifying a DB based on a GET request, it might be harmful as some bots might also traverse the URL.

The other case can be security issue. If you post credentials using GET, it'll get listed in browser history and server log files.

Mehrdad Afshari
how these methods works is there some kind of serialization used to store values and then deserialization for getting the stored data.
Praveen
For simple form submission, both rely on key value pairs. GET embeds those in the URL itself (query string) and POST sends it in the body of the request.
Mehrdad Afshari
+4  A: 

Looking at the http protocol, POST or GET should be equally easy and fast to parse. I would argue, there is no performance difference.

Take a look at the raw HTTP headers

http GET

GET /index.html?userid=joe&password=guessme HTTP/1.1
Host: www.mysite.com
User-Agent: Mozilla/4.0

http POST

POST /login.jsp HTTP/1.1
Host: www.mysite.com
User-Agent: Mozilla/4.0
Content-Length: 27
Content-Type: application/x-www-form-urlencoded

userid=joe&password=guessme

From my point of view, performance should not be considered when comparing GET and POST.

Robert
A: 

POST will grow your headers more, just making it larger, but the difference ought to be negligible really, so I don't see why this should be a concern.

Just bear in mind that the proper way to speak HTTP is to use GET only for actions and POST for data. You don't have to, but you also don't want to have a case where Google bots can, for example, insert, delete or manipulate data that was only meant for a human to handle simply because it is following the links it finds.

Hans
+3  A: 

There are several misconceptions about GET and POST in HTTP. There is one primary difference, GET must be idempotent while POST does not have to be. What this means is that GETs cause no side effects, i.e I can send a GET to a web application as many times as I want to (think hitting Ctrl+R or F5 many times) and the requests will be 'safe'

I cannot do that with POST, a POST may change data on the server. For example, if I order an item on the web the item should be added with a POST because state is changed on the server, the number of items I've added has increased by 1. If I did this with a POST and hit refresh in the browser the browser warns me, if I do it with a GET the browser will simply send the request.

On the server GET vs POST is pure convention, i.e. it's up to me as a developer to ensure that I code the POST on the server to not repeat the call. There are various ways of doing this but that's another question.

To actually answer the question if I use GET or POST to perform the same task there is no performance difference.

You can read the RFC (http://www.w3.org/Protocols/rfc2616/rfc2616.html) for more details.

Kevin Jones
+1  A: 

You should think of GET as "a place to go", and POST as "doing something". For example, a search form should be submitted using GET because the search result page is a "place" and the user will want to bookmark it or retrieve it from their history at a later date. If you submit the form using POST the user can only recreate the page by submitting the form again. On the other hand, if you were to perform an action such as clicking a delete button, you would not want to submit this with GET, as the action would be repeated whenever the user returned to the URL.

apathetic