Is there a way to override the connect session store with a custom functionality?
I'm coming from Python Flask framework where I have built a hybrid memcache + database session handler. Basically I use memcache as the main session holder, but on updates I save the data to the database and I also update the database every 5 mins of the session being alive.
Doing so this way I can lower the amount of requests to the database, but have the system always fall-back to the database in there is memory or memcache issue.
Is there a way to override or extend the get/save/destroy functions?