What is the use of sessions in Django?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Sessions in Django store user-specific data across requests. Django’s session system abstracts away the complexity of working with cookies directly. A session can store arbitrary data like user authentication status or shopping cart contents, and it works by setting a session ID cookie on the user's browser, which refers to the data stored on the server.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Sessions in Django store user-specific data across requests. Django’s session system abstracts away the complexity of working with cookies directly. A session can store arbitrary data like user authentication status or shopping cart contents, and it works by setting a session ID cookie on the user's browser, which refers to the data stored on the server.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can we make forms in python?
What is the difference between range () and xrange () in python 3?
How to use the slicing operator in Python?
What is Pickling and unpickling?
What is the incorrect declaration of a set?
With python, how do you find out which directory you are currently in?
How many types of objects does python support?
Is python pure object oriented programming ?
Can a class be static?
Is python strongly typed or weakly typed language?
Why and when do you use generators in python?
What is sockets? Explain.