I'm still learning & would like to know: let's say I've got the timespan set at the default 20 minutes for session variables. Is that 20 minutes from the time a particular variable is initially written, or 20 minutes from the last time it was written or read?
For instance, I want to keep a session scope variable with the user's initials. In my application.cfm file I will check if that variable exists & if so, the user is properly logged in, else I'll cut out and send them to the login page.
So when checking the session variables, will I need to be re-writing the variables or not to allow the users to continue using the app without interruption granted they're not idle for more than 20 minutes?
For instance, I want to keep a session scope variable with the user's initials. In my application.cfm file I will check if that variable exists & if so, the user is properly logged in, else I'll cut out and send them to the login page.
So when checking the session variables, will I need to be re-writing the variables or not to allow the users to continue using the app without interruption granted they're not idle for more than 20 minutes?