I see that a random (but not necessarily unique) session_key
is generated for new sessions and this is stored in whichever session type you're using (cache, db, cookie).
The two queries I have are:
- Is a new
session_key
generated for all sessions, including anonymous ones - Does the expiry of the anonymous sessions follow the same duration as a authenticated one - i.e. following
SESSION_COOKIE_AGE
or similar?