Hello!
I'm using Memcache with two memcached
servers running on two different IP adresses. In the php.ini
, I can assign Memcache to write to both these servers for session redundancy, but with the Phalcon Memcache adapter, I can only point out one IP as the host, which in turn makes is to that if you log in to the site and the load balancer then switches you to our other server, your session will not exist and you'll be thrown out.
How do I use Phalcon's Memcache adapter to write to all servers hosting my memcached
deamons, as defined in the php.ini
-file?
Thank you.