Hi everyone, I'm using phalcon's Phalcon\Session\Adapter\Redis adapter to handle my user's sessions, and it's working perfectly. Now I need to add an api endpoint to my project. so I can't use the same adapter, because this api will be separated (ish) from the main application I wanted to store the user's session id on a table and recover it when the api received a request. My idea is: Once the user logs into the application, and performs a certain action I will open a websocket connection to the api and send the user's session id (from the main application), and on the api I wanna find that user based on the session id received, am I being clear enough? Is that even possible? I really don't wanna move away from redis just because of this.
Thanks