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
This error occurs infrequently when using express-session
express-session
The text was updated successfully, but these errors were encountered:
The problem is probably that you are using multiple workers? I'm seeing the same, only when using multiple workers.
The solution would be to set the session db to use WAL mode. This does change it to be 3 files instead of one.
To do this manually, do this from the command line:
$ sqlite3 sessions.db 'pragma journal_mode=wal;' wal
You can do this while your app is running. From then on, it should be fine.
Sorry, something went wrong.
Use WAL mode for the database
6e5b3ef
Fixes rawberg#15
No branches or pull requests
This error occurs infrequently when using
express-session
The text was updated successfully, but these errors were encountered: