Hello,
Got this error:
Warning: connect.session() MemoryStore is not designed for a production environment, as it will leak memory, and will not scale past a single process.
MemoryStore is the default for express-session. So, everyone using this quickstart app will face this error when going in production.
The solution is here:
expressjs/session#556
But, maybe you could set it so it will be ready for production. This is not obvious how to change the default store and which one should be used. That would help a lot!
Thanks
Hello,
Got this error:
Warning: connect.session() MemoryStore is not designed for a production environment, as it will leak memory, and will not scale past a single process.
MemoryStore is the default for express-session. So, everyone using this quickstart app will face this error when going in production.
The solution is here:
expressjs/session#556
But, maybe you could set it so it will be ready for production. This is not obvious how to change the default store and which one should be used. That would help a lot!
Thanks