So I'm writing this new site, using HTML templates, blah-dee-blah, and one thing I'm considering using is Apache::Sessions with a MySQL database. This would be done in lieu of passing hidden variables from page to page; they would be stored in the session and read at will, an obvious improvement to security. However, all of my Java coherts
cringe at the word session... seems in Java the sessions are stored in memory ALL OF THE TIME. Is this true with Apache::Sessions, or is my overhead only contained in the fact that I have an extra connection to the database per pageload?