Memcached

如何在 CentOS 5.5 中為 PHP 5.2.10 安裝 memcache?(不在回購中)

  • November 26, 2010

我嘗試從另一個 repo 安裝 memcache,但都出錯了:

[root@mail ~]# php -v
PHP Warning:  PHP Startup: memcache: Unable to initialize module
Module compiled with module API=20050922, debug=0, thread-safety=0
PHP    compiled with module API=20060613, debug=0, thread-safety=0
These options need to match
in Unknown on line 0
PHP 5.2.10 (cli) (built: Nov 13 2009 11:44:05) 
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies

我怎樣才能完全解除安裝 memcached 和 memcache,然後安裝它以與 PHP 5.2.10 兼容?

謝謝!

您應該使用 pecl 安裝它:

sudo pecl install memcache

這將在您的環境中編譯擴展。

引用自:https://serverfault.com/questions/206289