如何在php中连接到memcache服务器?

时间:2014-08-06 05:02:43

标签: php memcached

我正在使用具有不同IP的数据库服务器。我已编写此代码以连接到memcache服务器

 $memcache->connect('localhost', '11211').

发生以下错误:

  

Memcache :: connect():无法连接到localhost:11211,Connection refused(111)。

如何解决此错误?

1 个答案:

答案 0 :(得分:0)

从你的错误中,我猜你没有安装Memcache Server。

使用Memcache时,您需要两个应用程序

  1. Memcache服务器应用程序(click download Win32 memcache版本1.2.6)
  2. Memcache客户端应用程序(enter to find);
  3. 使用步骤:

    1. 安装Memcache Server并设置服务器。

    2. 创建Memcache客户端,就像你的代码一样连接Memcache。

    3. 要查找更多详细信息 的文章

      memcache缓存处理简介用中文写的。

      How to install Memcached on Windows machine