您好,欢迎访问一九零五行业门户网

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
二、编译安装
http://www.bkjia.com/phpjc/1122394.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/1122394.htmltecharticleredis 学习,redis学习 非关系型数据库redis v3.0( 6379 端口)   端口含义:   开发者:   国内对nosql的使用:           产品官网:http://redis...
其它类似信息

推荐信息