… on PHP level, which means they also will be serialized for single user on database level. If you change to store PHP sessions… transactional tables for session you can use GET_LOCK to get same behavior. In the start of the session you can do SELECT GET_LOCK(”,10) and in in the end of the request SELECT RELEASE_LOCK(”) where session_id is current session identifier. Note – setting this external lock…
Post: Worse than DDOS
… stages and just setting timeout is not enough. Beware of PHP sessions “files” handler I already wrote about this topic, but when… this all takes another angle. Default file handler means file gets locked while PHP request is being served. In this case because of… is our query if it is waiting on the session file lock we can get that file and use fuser to see what…
Comment: PHP Sessions - Files vs Database Based
… my experience with an application design problem – when PHP issues locking select for the session right at the beginning and releases (if finishes… do the same, the situation I described occurs… then the session purgers kicks in, and I get called ![]()

