Memcache Kurulumu

Öncelikle memcache servisi kurulur.

yum install memcached

PHP’ye memcache modülü eklemek için aşağıdaki komut çalıştırılır.

yum install php-pear gcc pecl install memcache

Kurulum sonunda aşağıdaki satır görülür.

install ok: channel://pecl.php.net/memcache-2.2.7
You should add “extension=memcache.so” to php.ini

Aşağıdaki komut ile php’ye memcache tanıtılır.
echo extension=memcache.so>/etc/php.d/memcache.ini

php -i | grep memcache komutu ile kurulum kontrol edilir. Sonrasında apache restart edilir.

service httpd restart

php -i | grep memcache örnek çıktı;
/etc/php.d/memcache.ini,
memcache
memcache support => enabled
memcache.allow_failover => 1 => 1
memcache.chunk_size => 8192 => 8192
memcache.default_port => 11211 => 11211
memcache.default_timeout_ms => 1000 => 1000
memcache.hash_function => crc32 => crc32
memcache.hash_strategy => consistent => consistent
memcache.max_failover_attempts => 20 => 20
Registered save handlers => files user memcache

Yorum Yapın

Mesajınız