We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The way PHP reads session data is : - start page execution read session data work with session data page execution over write session data
That means session data is loaded only once. So access to session data should be locked. The sequence should be
Without a lock in place - we may have corrupt session data. We have to "emulate" the locking behavior of default PHP sessions.
@see http://www.mysqlperformanceblog.com/2007/03/27/php-sessions-files-vs-database-based/ @see http://stackoverflow.com/questions/1022416/how-to-properly-implement-a-custom-session-persister-in-php-mysql/10422239#10422239
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The way PHP reads session data is : -
start page execution
read session data
work with session data
page execution over
write session data
That means session data is loaded only once. So access to session data should be locked. The sequence should be
Without a lock in place - we may have corrupt session data. We have to "emulate" the locking behavior of default PHP sessions.
@see http://www.mysqlperformanceblog.com/2007/03/27/php-sessions-files-vs-database-based/
@see http://stackoverflow.com/questions/1022416/how-to-properly-implement-a-custom-session-persister-in-php-mysql/10422239#10422239
The text was updated successfully, but these errors were encountered: