How to clear session table in magneto 2
How to clear session table in magneto 2
How to clear session table in magneto 2 : For some reason, you need to clear all the session data, you would usually just need to clear the var/session folder. But what if the session data is stored in database? Well, then you need to “Truncate” session table in your Magento database. However, this will cause you to lose active sessions.
If you need to delete just the expired sessions use following MySQL query
DELETE FROM session WHERE session_expires < UNIX_TIMESTAMP();
—
If my answer is useful, please Accept as Solution & give Kudo