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
Current implementation of sessions is located in the core. This includes the in-memory and Redis implementations.
Also runtime initialization uses an enumeration to select the session store type.
Proposed Change
Factor out the Redis implementation of the session store out to a new module so that we can remove the Redis dependency from the core.
Runtime initialization should be possible with an externally injected session store instance instead of a enumeration specifying the session store type. This would allow easier extension of session stores.
Proposed Change