I have made PHP application that absolutely relay on session files that is meant to stay for long periods of time (example, tree weeks, one month...).
Because my PHP app will run on shared hosting environment, I made custom session_save_path - directory into the root of my app that contains required session files.
I was wondering: is there any Linux system-based cron mechanism, or anything other which I do not know about, that will delete my session files if they are untouched for some long period of time, as it would incorrectly assume that session file is unnecessary garbage?
It would totally mess up my my application.
I'm concerned mostly because I found some answer here (http://stackoverflow.com/questions/8693934/how-does-php-know-when-to-delete-a-session) which I didn't get well.