You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi All, I'm using express-session to store the session to a postgres table. If I use resave: true, saveUninitialized: true, then it's creating a separate session entry in DB for each request. However if I give resave: false, saveUninitialized: false, then it's not creating any entry in the DB, Any idea on how to fix this issue.
Hi All, I'm using express-session to store the session to a postgres table. If I use
resave: true, saveUninitialized: true,
then it's creating a separate session entry in DB for each request. However if I giveresave: false, saveUninitialized: false,
then it's not creating any entry in the DB, Any idea on how to fix this issue.Here is the session config:
The text was updated successfully, but these errors were encountered: