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 |
What is the process for creating a controller for the subject? What is its role?
What is the use of the super function in ruby on rails?
Explain the importance of yield statement in rails.
List out what can Rails Migration do?
Write the command to update rvm in rails.
what is the naming convention in Rails?
Explain testing in rails.
what is “Yield” in Ruby on Rails?
what are benefits of using active record as opposed to raw sql queries?
What role does garbage collection play?
What is the function of orm in ruby on rails?
What are the hashes?