程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Redis 學習,redis學習

Redis 學習,redis學習

編輯:關於PHP編程

Redis 學習,redis學習


非關系型數據庫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

二、編譯安裝

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved