下面记录一下Mac下XAMPP环境中添加php对memcache的扩展,网上的一些资料比较复杂,需要自己编译,下面我们给一个简单的方法。
[title]安装php-memcache扩展:[/title]
在终端中运行如下命令:
brew install autoconf sudo /Applications/XAMPP/xamppfiles/bin/pecl install memcache
然后在php.ini里面添加如下内容:
php.ini的路径一般为:
/Applications/XAMPP/xamppfiles/etc/php.ini
添加内容为:
extension = memcache.so
重启apache.
[title]安装memcached:[/title]
brew install memcached
[title]启动memcached:[/title]
/usr/local/opt/memcached/bin/memcached -m 128 -p 11211 -d