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 |
Is integer immutable in python?
Can we return a string in python?
What is the use of globals() function in python?
Name different types of inheritance in python?
What is the script in python?
What is the type of the given datatype a=1?
What language is python based on?
What is the proper way to say good bye to python?
What is the difference between the shallow copy and deep copy in python?
What are the different uses of help() and dir() functions in python?
Does python do until loop?
How does the ternary operator work in python?