- cd /usr/ports/databases/memcached
make install clean - ee /etc/rc.conf
Добавляем строку:
memcached_enable="YES" - /usr/local/etc/rc.d/memcached start
- Проверяем: netstat -an | grep 11211
- Ставим расширение для php: cd /usr/ports/databases/pecl-memcache
make install clean - /usr/local/bin/php -i | grep -i 'memcache'
- apachectl restart
Проверить то что работает memcached можно в phpinfo() или скриптом:
<?php
$memcache = new Memcache;
$memcache->connect('localhost', 11211) or die ("Could not connect");