I have an application that at the end of the day 12:00 midnight I need all session.variables to expire and thus force my users to relogin.
WIll this code end all of my user sessions?
<cflock scope="Session" timeout="10" type="exclusive">
<cfset structclear(session)>
</cflock>