Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

第 18 章 CouchBase

目錄

18.1. 安裝 CouchBase
18.1.1. Getting Started with Couchbase on PHP
18.2. couchbase 命令
18.2.1. couchbase-cli

Membase + CouchDB = CouchBase, CouchBase是Membase + CouchDB兩個項目合併而來。

18.1. 安裝 CouchBase

進入 http://www.couchbase.com/download 找到適合你的版本,然後使用yum install 安裝, 我個人習慣使用yum而不是rpm,因為 yum 可以解決包之間的依賴問題。

# yum install http://packages.couchbase.com/releases/2.2.0/couchbase-server-community_2.2.0_x86_64.rpm
		

CouchBase 安裝後會自動啟動起來,同時啟動腳本也做了設置

# chkconfig couchbase-server --list
couchbase-server	0:off	1:off	2:on	3:on	4:on	5:on	6:off
		

Web 管理界面http://localhost:8091/index.html

18.1.1. Getting Started with Couchbase on PHP

安裝C開發包

# wget -O/etc/yum.repos.d/couchbase.repo http://packages.couchbase.com/rpm/couchbase-centos62-x86_64.repo
# yum install -y libcouchbase-devel
			

安裝PHP擴展

# pecl search couchbase
Retrieving data...0%
Matched packages, channel pecl.php.net:
=======================================
Package   Stable/(Latest) Local
couchbase 1.2.2 (stable)        Couchbase Server PHP extension


#  pecl install couchbase
			

配置擴展

			
cat > /srv/php/etc/conf.d/couchbase.ini <<EOF
extension=couchbase.so
EOF
			
			

測試代碼

			
<?php
// adjust these parameters to match your installation
$cb = new Couchbase("127.0.0.1:8091", "", "", "default");
$cb->set("a", 101);
var_dump($cb->get("a"));
?>
			
			
# php test.php
int(101)