Hi, I have an action in a controller that should only be called once at a moment.
I thinking of something like a session information, that pretends other users from invoking the action after somebody else already has called it. I cannot use session objects, because they are only accessible for a certain user, but not to all.
After the action has completed it job it should be unlocked so that other users can access it again.
Thank you!