Is it slower to retrieve a user's cookie and get its value as a PHP variable, than it is to retrieve a session variable?
|
feedback
|
|
No. In pure technical terms, it is likely the opposite, as there would be a bit of minor overhead to initializing a session. Cookie data comes in as part of the HTTP request no matter what, and PHP reads it into $_COOKIE by default. So it's always going to be there. $_SESSION requires you to call However, the performance difference between the two is going to be ridiculously small and not worth worrying about. | |||||
feedback
|
|
In general, you should not worry about the retrieval speed of a session variable or a cookie. You should however be aware of the differences between them:
| |||||||
feedback
|
|
A session is by default already backed by a cookie with the name It's only easier to make use of | |||||
feedback
|
|
I would believe it would be about the same except the session would be coming from disk. Also the session is coming from the cookies anyways. From a security standpoint, do you really want to be storing information on the client-side? Typically, I would not store things with the client. | |||
|
feedback
|
|
While roughly equivalent from the perspective of manipulation in code, cookies and session variables are very different things. Cookies are stored in the browser, and transmitted to the web server with each request. If you store large cookies or lots of small ones in the user's browser, you increase the size of each request/response, which makes each hit more expensive (bandwidth) and slower (time). Also, anything stored in a cookie is visible to the client, so avoid storing anything sensitive there. Session variables, on the other hand, have their own sets of issues. Since they're stored within the server context, they don't propagate between clustered servers. If the server/service resets or the user's session times out, whatever was stored in the session[] collection is lost. Storing large data in a session variable incurs a performance penalty on the server, which can get really bad if you have a lot of traffic. Session variables require a cookie, which the server uses to identify a user's session. It is feasible for a user to alter their cookie to gain access to data stored in other sessions, though this would be pretty freakin' difficult to do with any kind of value since session IDs are randomized, nonsensical pseudo IDs. Ultimately, all of this crap should be stored in a database anyway. Sessions are a lazy convenience that should be avoided when developing any robust application. Cookies should be used minimally - typically, I store a guid in a cookie which helps me identify a user (similiar to a sessionID cookie, but application-specific), but everything else goes in the database. This gives you server-agnostic data availability, secure storage, data lifetime set by your app instead of the server config, good query and report ability, etc. Databases are easy when done right. There are many, many reasons that any state information you collect should be stored in a database, and no good reason not to. | |||
|
feedback
|
|
In some browser it is not possible to store cookie ,to avoid this problem you can pass a SID (session id) or some hidden,filled,textbox values , instead of cookies, by using GET and POST methods. | |||||
feedback
|