what is session and cookies
Answers were Sorted based on User's Feedback
Session is used for maintaining the particular value
throughout the session..(brower closed)
e.x: session[:value]="poornimad"
this values is not changed until the brower closed..
Cookies:
*********
This is used to store the values in the Browser..this
value is not delete till the cookies are deleted..This
cookies concept is same as Java cookies.The concept is same.
| Is This Answer Correct ? | 19 Yes | 3 No |
Session are used to store information about user on server
side .Whereas cookies are used on client side
| Is This Answer Correct ? | 16 Yes | 5 No |
session is a way by which we can add a object in memory between two
request .
and cookies are chunk of data which are stored on browser.
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / jagadeesh b.n
Sessions always resides at the server side where as cookies
may either resides at the client or server side.
Cookies are stored in a harddisk where as sessions are not
stored in an harddisk and they exists until the browser is
opened.
| Is This Answer Correct ? | 5 Yes | 10 No |
The string can be represented in single as well as double quotes. What is the difference between the two?
What is unit testing (in classical terms)? What is the primary technique when writing a test ?
what is the difference between calling super() and super call?
What is the purpose of load in ruby?
what is the difference between destroy and delete?
What are generators in ruby on rails?
Explain how Rails implements Ajax?
What are the steps involved in writing and setting up an application in ruby on rails?
Explain rails migration.
What is the latest version of ruby on rails?
How would you create a controller for the subject?
What do you mean by render and redirect_to?