Can RedisJson be used to store express-session data instead of Redis
I am trying to manually access the express-session data instead of using req.session.reload()
and req.session.save()
. I want to use Redisjson instead of default redis. I have the issue of the express-sesssion setting data using .get()
instead of .json.get()
(.get saves it as a string, which means I cannot access the session through client.json.get()
.