Remove session id on timeout

Hi,

I wanted to know if the session id gets deleted from core_session table on timeout. if not is there a way we could achieve it?

Hi @Chetan
No, the core_session table is not expunged. It is used as an audit trail.
If you want to expunge old sessions (which are already invalid), then you can create a cronjob that deletes old sessions.

Thanks @flamber