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 you sort a list?
What is pyunit in python?
What is a Lambda form? Explain about assert statement?
What is python used for at google?
How are uuid generated?
How to tic tac toe computer move?
What does the continue do in python?
How many types of loops are there in python?
What’s your preferred text editor?
What does this mean: *args, **kwargs? And why would we use it?
Is numpy faster than python?
What are the tools that help to find bugs or perform static analysis?