I was read contrib/sessions/backend/db.py file and i see
session_key=self._get_or_create_session_key(),
session_data=self.encode(self._get_session(no_load=must_create)),
expire_date=self.get_expiry_date()
That mean Django store session_key, session_data and expire_date. If i have a line
request.session['user_id'] = "my_user_id"
I use Redis and Engine for my test. My question is How it can be stored to Redis?
Thank for advance!