@mick79 The database is probably the least optimal driver to use for sessions are you’re now increasing the load on the database.
Redis would be a better option as it lives in memory so reading is going to be fast.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I've recently had to change how I handle my sessions as I'm now running across many boxes with HA Proxy in front of them all.
I've opted to use the database for sessions but basically I'm ignorant to the pros and cons of the other options. My priority is speed. What should I use?
Please or to participate in this conversation.