I am studying the use of Stormpath for our user management.
I currently have a Sails.js application that uses Node.js / Express.js. Session management is currently performed by default on the Sails.js framework, which relies heavily on Express middleware.
Sessions are stored in a common Redis database during production, so we can keep our multiple API servers idle.
My question is, will conflicting session management systems and / or cause errors? Do we need to consolidate them or can we safely keep them separate? if you need to combine them, how to configure middleware?
As a side note, we will not store much user data in the Stormpath, we will only use it as an auth / token provider.
Thanks for the help!
source share