Django sessions
16-Feb-2022
Django is a high-level Python web framework that has inbuilt sessions
middleware that helps us to handle sessions in an efficient way.
You can simply use
request.sessions[variablename in string]
in your views.py file
to create session variable.Once you have created a session variable,then the session is successfully
created.You can also able to create a session explicitly.Using sessions you can manage all session related activities.
Refer this documentation for more
By Ram sankar S
Go Language
09-Mar-2022
Go is a statically typed, compiled programming language designed at Google by Robert Griesemer, Rob Pike, and Ken Thompson.
Go is syntactically similar to C, but with memory safety, garbage collection, structural typing, and CSP-style concurrency.
Recently,I have started learning Go.It is simple and easy to learn.There are more usecases using Go programming language.Go
may be the future language because of its performance.I have tried Gin framework for my backend web development.It was good to
use and still need some more features in my opinion 😉
Refer to Go official site
By Ram sankar S
Java Springboot
02-Oct-2022
Recently I worked with Java Springboot😉.Easy to work with and provide
more flexibility for the developers to develop the applications faster and in a better manner.It takes care
of the configuration and save the time of the developers.It is very easy to integrate
Spring Boot Application with its Spring Ecosystem like Spring JDBC, Spring ORM, Spring Data, Spring Security etc.
By Ram sankar S