非關系型數據庫Redis V3.0( 6379 端口)
端口含義:
開發者:
國內對NoSQL的使用:
產品官網:http://redis.io/
參考手冊:http://redisdoc.com/
中文文檔:http://redisdoc.com/
redis的github地址:https://github.com/antirez/redis
Redis is an open source, BSD licensed, advanced key-value cache and store(存儲). It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets, sorted sets, bitmaps and hyperloglogs.
Redis是開源,BSD許可,高級的key-value緩存和存儲系統。 可以用來存儲字符串,哈希結構,鏈表,集合,因此,常用來提供數據結構服務。 通常也叫做 結構化 非關系型數據庫。
緩存:因為redis和memcache一樣,也是一個內存緩存系統。
但是它多了一個持久化的功能,可以將內存之中的數據,同步到磁盤上,防止數據的丟失。
一、系統概述
1.環境檢查
[root@asion ~]# lsb_release -a
LSB-Version:core-4.0-ia32:core-4.0-noarch:graphics-4.0-ia32:gr aphics-4.0-noarch:printing-4.0-ia32:printing-4.0-noarch
Distributor ID: CentOS
Description: CentOS release 5.5 (Final)
Release: 5.5
Codename: Final
# uname -a ###unix name -a all
# cat /etc/issue
注意:當獲取操作系統信息之後,下載對應操作系統的源碼包
2. 編譯前環境准備(源碼編譯前需執行如下命令)
[root@asion ~]# yum -y install make apr* autoconf automake
curl-devel gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel gd kernel keyutils patch perl kernel-headers compat* mpfr cpp glibc libgomp libstdc++-devel ppl cloog-ppl keyutils-libs-devel libcom_err-devel libsepol-devel libselinux-devel krb5-devel zlib-devel libXpm* freetype libjpeg* libpng* php-common php-gd ncurses* libtool* libxml2 libxml2-devel patch cmake
注意:安裝lamp環境報錯?
error libiconv_open undefined
iconv('gb2312','utf8',$data);
http://blog.csdn.net/felixit0120/article/details/7454862