Does the session deleted automatically by the end of the request ?
I am afraid that using the default memory session could create any bottleneck, i am not thinking of Redis
But thinking of DB session ...
so I have a couple of questions?
1- Does the session for the request be deleted automatically by the end of the request ?
2-What are the disadvantages of using DB as a session store other than performance ?
@lifesound What good would a session being deleted at the end of a request be? You’d be logged out immediately after logging in if the session was trashed at the end of the login request.