Is it good to add the below code in /var/spool/cron/root to cleanup the Magento Session files regularly?
Kindly advice.
Thanks
Code:
0 0 * * * find /tmp -name 'sess*' -mtime +1 -exec rm -v {} \;
Thanks