centos下安裝memcached
作者:tonyvicky
來自:LinuxSir.Org
摘要:由於資料庫儲存的資料量越來越大,查詢速度也就變的越來越慢,因此就有了快取伺服器應用的必要,本文是介紹Memcached的安裝以及簡單的使用。
本文只介紹memcached的PHP的API,想檢視其他關於Memcached的API文件案,請訪問 http://www.danga.com/memcached/
目錄
一、環境需求二、下載相關軟體
三、安裝和配置
1、安裝Memcached
2、安裝memcache PHP模組
3、測試指令碼
++++++++++++++++++++++++++++++++++++++++
正文
++++++++++++++++++++++++++++++++++++++++
一、環境需求
安裝Memcached需要libevent庫的支援,所以請在安裝Memcached之前檢查有沒有安裝libevent。測試環境還需要PHP的支援,本文假設PHP已經安裝到/usr/local/php目錄下,也就是在編譯PHP的時候使用perfix引數指定目錄(--prefix=/usr/local/php)
二、下載相關軟體
Memcached下載地址:http://www.danga.com/memcached/
memcache PHP模組下載地址: http://pecl.php.net/package/memcache 推薦使用1.5版
libevent 下載地址: http://www.monkey.org/~provos/libevent/
本文不再講述如何安裝libevent
三、安裝和配置
1、安裝Memcached
root@tonyvicky:# tar vxzf memcached-1.1.12.tar.gz
root@tonyvicky:# cd memcached-1.1.12
root@tonyvicky:# ./configure --prefix=/usr/local/memcached
root@tonyvicky:# make
root@tonyvicky:# make install
安裝完之後要啟動服務
root@tonyvicky:# cd /usr/local/memcached/bin
root@tonyvicky:# ./memcached -d -m 50 -p 11211 -u root
引數說明 -m 指定使用多少兆的快取空間;-p 指定要監聽的埠; -u 指定以哪個使用者來執行
2、安裝memcache PHP模組
root@tonyvicky:# tar vxzf memcache-1.5.tgz
root@tonyvicky:# cd memcache-1.5
root@tonyvicky:# /usr/local/php/bin/phpize
root@tonyvicky:# ./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config --with-zlib-dir
root@tonyvicky:# make
root@tonyvicky:# make install
安裝完後會有類似這樣的提示:
Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20050922/
把這個記住,然後修改php.ini,把
extension_dir = "./"
修改為
extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20050922/"
並新增一行
extension=memcache.so
3、測試指令碼
自己寫一個PHP程式測試一下吧
<?php
$memcache = new Memcache; //建立一個memcache物件
$memcache->connect('localhost', 11211) or die ("Could not connect"); //連線Memcached伺服器
$memcache->set('key', 'test'); //設定一個變數到記憶體中,名稱是key 值是test
$get_value = $memcache->get('key'); //從記憶體中取出key的值
echo $get_value;
?>
相關文章
- centos7下安裝php+memcached簡單記錄CentOSPHP
- Centos7編譯安裝Memcached教程。CentOS編譯
- centos7 安裝memcached以及擴充套件CentOS套件
- 安裝 Memcached
- memcached 安裝
- memcached安裝
- Centos8 stream系統編譯安裝Memcached教程。CentOS編譯
- Ubuntu 安裝 MemcachedUbuntu
- ubuntu安裝memcachedUbuntu
- memcached 安裝配置
- centos下安裝dockerCentOSDocker
- Centos下安裝cassandraCentOS
- centos下安裝nginxCentOSNginx
- Centos下安裝NessusCentOS
- CentOS下expect 安裝CentOS
- centos下安裝ZooKeeperCentOS
- centos下安裝oracleCentOSOracle
- Centos下安裝ffmpegCentOS
- Linux下安裝配置MemCached(以及libevent)Linux
- memcached安裝測試
- centos 下docker映象安裝CentOSDocker
- centos下安裝jenkinsCentOSJenkins
- centos下安裝tomcatCentOSTomcat
- CentOS下安裝配置cmakeCentOS
- CentOS 下 R 的安裝CentOS
- CentOs下jdk的安裝CentOSJDK
- CentOS 5.5下安裝ActiveMQCentOSMQ
- CentOS下yum安裝MySQLCentOSMySql
- 安裝python-memcachedPython
- 安裝和使用memcached(windows)Windows
- CentOS 下編譯安裝 NginxCentOS編譯Nginx
- CentOS 下編譯安裝 apacheCentOS編譯Apache
- CentOS7 下安裝 ElasticsearchCentOSElasticsearch
- centos7下安裝ffmpegCentOS
- centos 下 安裝 node,nginx, mysqlCentOSNginxMySql
- centos7下安裝phpCentOSPHP
- CentOS下安裝pip 18.0CentOS
- centos7下docker安裝CentOSDocker