Sarath Chandran

Software Developer

Django Cookies

Django cookies are a small piece of information that is stored in the client browser. It is used to store users’ information in a file permanently or a specific period of time. So the cookie will automatically remove when gets expire. In this tutorial, you will learn about how to set and get cookies in

Share this:

Django Cookies Read More »

Django Sessions

Django Sessions: Django provides full support for anonymous sessions. The session framework lets you store and retrieve arbitrary data on a per-site-visitor basis. It stores data on the server side and abstracts the sending and receiving of cookies. Cookies contain a session ID – not the data itself (unless you’re using the cookie-based backend). (official

Share this:

Django Sessions Read More »

Django Caching

Django Caching: To cache something is to save the result of an expensive calculation so that you don’t have to perform the calculation next time. (official doc). Caching is one of the most effective ways to boost an application’s performance. For dynamic websites, when rendering a template you’ll often have to retrieve data from various

Share this:

Django Caching Read More »

Scroll to Top