Database Vs Cookies Vs Redis - What's best for sessions?
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?
@Mick79 file based is usually fine and fast. However if you have to go with load balancing then use database. Redis I am not sure about. But do a search on redis with load balancing.