esafwan
esafwan

Reputation: 18009

Memcache for PHP when mysql in dedicated server

I am having a dedicated server host MySQL in one server and Apache & my Drupal application in another server. But now I am confused where memcached should be installed? If its in the MySql server how do we point to it?

Upvotes: 0

Views: 71

Answers (1)

PolishDeveloper
PolishDeveloper

Reputation: 950

Better use APC on Apache server, It will be much faster than memcache because you don't need to make a tcp/ip call to connect to memcache.

Then if you still want use memcache install it on Apache server, it will be little bit faster than connecting to another machine. And it will be easier to maintain, leave mysql machine as a standalone server and run only mysql on it

Upvotes: 1

Related Questions