In an app I wrote I implemented licensing for the modules in the app.
Right now, I query the database every time the license is checked which is a ton of SQL calls per user per session...
How can I limit the lookup to once per session?
Just store it in the session hash?
John