I don't mind at all, but the question is...
If i'm using DNS round robin as load balancing method, then user A is
handled by server 1,
his PHP session also stored on that server 1,
That being said, I would suggest that you take the first direction
(I.e. deploying Memcache on a dedicated node), this way you decouple
your Memcache scaling from Web scaling.
Also u should take into account that in many cases Memcache generates
a lot of network I/O which can slow down your web/app performance if
deployed on the same node.
Sent from my iPhone
That being said, I would suggest that you take the first direction
(I.e. deploying Memcache on a dedicated node), this way you decouple
your Memcache scaling from Web scaling.
Also u should take into account that in many cases Memcache generates
a lot of network I/O which can slow down your web/app performance if
deployed on the same node.
/Henrik
Normally you would have separate front/back end networks for web and
internal traffic especially if you are scaling to a point where
either might be saturated. There should be little conflict.
> To clear it more, if you have N servers each deployed with a webservers a
> memcached server, and memcached is distributed across all servers, each
> webservers needs to deal with Memcached network I/O associated with N-1
> webservers --> we found it architecturally wrong, it actually slows down the
> entire application
If you have one memcached server and it goes down, you lose 100% of
your caching.
--
Les Mikesell
lesmi...@gmail.com
TIf you but the Memcached on a dedicated server each webserver only deals with the network I/O associated with its traffic, leaving the dedicated Memcached server to deal with all cached traffic.
To clear it more, if you have N servers each deployed with a webservers a memcached server, and memcached is distributed across all servers, each webservers needs to deal with Memcached network I/O associated with N-1 webservers --> we found it architecturally wrong, it actually slows down the entire application
Both services on the same machine is also difficult.pppppppppppp
Henrik Schröder <skr...@gmail.com> schrieb: