Redis 学习之简介及安装

一、redis简介

Redis是一个开源的,先进的key-value存储。它通常被称为数据结构服务器,因为键可以包含字符串、哈希、链表、集合和有序集合。

支持的数据类型:string(字符串)、list(集合)、set(集合)、zset(有序集合)。

支持的操作:这些数据类型支持push/pop、add/remove 等丰富的数据操作。支持不同方式的排序。

缓存:redis为了保证效率数据都是缓存在内存中的,为了防止系统突然崩溃从而导致内存中的数据丢失,它也可以周期性的把更新的数据写入磁盘或者把修改操作写入追加的记录文件。

redis用户:新浪微博是redis最大的用户,200多台物理机。

redis在新浪微博中的使用场景:

1、应用程序直接访问redis数据库

该方式与传统应用程序访问mysql类似,但该方式不安全。

2、应用程序直接访问Redis,只有当Redis访问失败后才访问Mysql

a、应用程序先访问redis server,redis与mysql集群进行数据同步

b、如果redis集群宕机后应用程序直接访问mysql集群

3、redis使用场景:

a、区最新N个数据的操作

b、排行榜应用、取TOP N操作

c、需要精确设定过期时间的应用

d、计数器应用

e、uniq操作、获取某段时间所有数据排重值

f、实时系统、反垃圾系统

g、Pub/Sub构建实时消息系统

h、构建队列系统

i、redis缓存

三、redis的安装

1、下载 https://redis.io/download 稳定版(stable)

a、解压:[[email protected] tools]# tar -zxvf redis-3.2.8.tar.gz

b、编译:[[email protected] redis-3.2.8]# make

#如果出现错误 gcc:命令未找到 则安装gcc yum install -y gcc g++ gcc-c++ make

#如果出现 tcl 问题 则安装tcl yum install tcl

c、安装 [[email protected] src]# make install

在src下将出现redis的相关命令(存放在解压后源码包下的src目录)

-rwxr-xr-x. 1 root root 5707211 2月 17 22:33 redis-cli 进入redis客户端命令

-rwxr-xr-x. 1 root root 7827978 2月 17 22:33 redis-server 启动redis服务命令

2、配置redis

(1)[[email protected] src]# mkdir -p /usr/local/redis/bin 创建文件夹用户存储redis命令

(2)[[email protected] src]# mkdir -p /usr/local/redis/etc 创建文件夹用户存储redis配置文件

(3)将/tools/redis-3.2.8下的 redis.conf移动到/usr/local/redis/etc下

[[email protected] redis-3.2.8]# mv ./redis.conf /usr/local/redis/etc

(4)将/tools/redis-3.2.8/src下的 mkreleasehdr.sh、redis-benchmark、redis-check-aof、redis-check-rdb、redis-cli、redis-server移动到/usr/local/redis/bin下

(5)启动redis服务:进入redis bin目录下 /usr/local/redis/bin

[[email protected] bin]# ./redis-server

#如果出现 -bash: ./redis-server: 权限不够

#查看权限:[[email protected] bin]# ls -l | grep -i redis-server

#赋予xr权限 :[[email protected] bin]# chmod 755 redis-server

[[email protected] bin]# ls -l | grep -i redis-server -rw-rw-r--. 1 root root 7827978 2月 17 22:52 redis-server [[email protected] bin]# chmod 755 redis-server [[email protected] bin]# ls -l | grep -i redis-server -rwxr-xr-x. 1 root root 7827978 2月 17 22:52 redis-server

提示信息

[[email protected] bin]# ./redis-server 5322:C 17 Feb 23:18:39.086 # Warning: no config file specified, using the default config. In order to specify a config file use ./redis-server /path/to/redis.conf 5322:M 17 Feb 23:18:39.087 * Increased maximum number of open files to 10032 (it was originally set to 1024). _._ _.-``__ ‘‘-._ _.-`` `. `_. ‘‘-._ Redis 3.2.8 (00000000/0) 64 bit .-`` .-```. ```\/ _.,_ ‘‘-._ ( ‘ , .-` | `, ) Running in standalone mode |`-._`-...-` __...-.``-._|‘` _.-‘| Port: 6379 | `-._ `._ / _.-‘ | PID: 5322 `-._ `-._ `-./ _.-‘ _.-‘ |`-._`-._ `-.__.-‘ _.-‘_.-‘| | `-._`-._ _.-‘_.-‘ | http://redis.io `-._ `-._`-.__.-‘_.-‘ _.-‘ |`-._`-._ `-.__.-‘ _.-‘_.-‘| | `-._`-._ _.-‘_.-‘ | `-._ `-._`-.__.-‘_.-‘ _.-‘ `-._ `-.__.-‘ _.-‘ `-._ _.-‘ `-.__.-‘ 5322:M 17 Feb 23:18:39.113 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 5322:M 17 Feb 23:18:39.113 # Server started, Redis version 3.2.8 5322:M 17 Feb 23:18:39.114 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add ‘vm.overcommit_memory = 1‘ to /etc/sysctl.conf and then reboot or run the command ‘sysctl vm.overcommit_memory=1‘ for this to take effect. 5322:M 17 Feb 23:18:39.114 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command ‘echo never > /sys/kernel/mm/transparent_hugepage/enabled‘ as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 5322:M 17 Feb 23:18:39.114 * The server is now ready to accept connections on port 6379

安装成功端口 6379

使用指定的配置文件启动redis服务器

[[email protected] bin]# ./redis-server /usr/local/redis/etc/redis.conf

四、redis后台运行解决方法:

vi /usr/local/redis/etc/redis.conf

################################# GENERAL #####################################

# By default Redis does not run as a daemon. Use ‘yes‘ if you need it.

# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.

daemonize no

#daemonize no:默认启动方式该方式占用一个窗口,一旦ctrl+c redis服务器就关闭

#daemonize yes:将redis的启动方式改为后台运行

进入:redis 客户端

[[email protected] bin]# pwd

/usr/local/redis/bin

[[email protected] bin]# ./redis-cli

127.0.0.1:6379>

关闭redis服务器:

[[email protected] bin]# pkill redis-serve (通过进程的方式)

[[email protected] bin]# ./redis-cli shutdown(通过redis命令)

************************************** Redis配置 **********************************************

Redis主从复制:

redis只需在从服务器(slave)上配置即可:

slaveof 211.122.11.11 6379 #指定master 的ip 和端口

daemonize    如果需要在后台运行,把该项改为yes

pidfile      配置多个pid的地址 默认在/var/run/redis.pid

bind 绑定ip,设置后只接受来自该ip的请求

port 监听端口,默认为6379

timeout      设置客户端连接时的超时时间,单位为秒

loglevel     分为4级,debug、verbose、notice、warning

logfile      配置log文件地址

databases    设置数据库的个数,默认使用的数据库为0

save         设置redis进行数据库镜像的频率

rdbcompression    在进行镜像备份时,是否进行压缩

Dbfilename        镜像备份文件的文件名

Dir   数据库镜像备份的文件放置路径

Slaveof     设置数据库为其他数据库的从数据库

Masterauth 主数据库连接需要的密码验证

Requirepass     设置登录时需要使用的密码

Maxclients 限制同时连接的客户数量

Maxmemory 设置redis能够使用的最大内存

Appendonly 开启append only模式

以下了解即可:

Appendfsync 设置对appendonly.aof文件同步的频率

vm-enabled 是否开启虚拟内存支持

vm-swap-file 设置虚拟内存的交换文件路径

vm-max-memory 设置redis使用的最大物理内存大小

vm-page-size 设置虚拟内存的页大小

vm-pages 设置交换文件的总的page数量

vm-max-threads 设置VM IO同时使用的线程数量

Glueoutputbuf 把小的输出缓存存放在一起

hash-max-zipmap-entries 设置hash的临界值

Activerehashing 重新hash

*******************************************************************

Redis常用命令

键/值相关命令。

keys * #查询所有

keys user*#查询指定的

exists user:001#判断是否存在。

del name#删除指定的键。

expire addr 10#设置过期时间

ttl addr#查询过期时间

select 0 #选择数据库

move age 1#将age移到1数据库。

get age #获取

persist age#移除age的过期时间。

randomkey#随机返回一个key

rename name1 name2#重命名键

type myset#返回键的类型。

ping #测试redis连接是否存活。

echo lamp#输出一个lamp

select 10#选择数据库。

quit/exit/crtl+C#退出客户端

dbsize#返回库里的键的个数。

服务器相关命令:

info#显示redis服务器的相关信息。

config get */loglevel #返回所有/指定的配置信息。

flushdb#删除当前库中的所有键/表。

flushall#删除所有数据库中的所有键/表

时间: 2024-12-10 11:57:29

Redis 学习之简介及安装的相关文章

redis学习——day01_redis简介与安装

一.Redis 简介 1.1 Redis是什么 REmote DIctionary Server(Redis) 是一个由Salvatore Sanfilippo写的key-value存储系统.Redis提供了一些丰富的数据结构,包括 lists, sets, ordered sets 以及 hashes ,当然还有和Memcached一样的 strings结构.Redis当然还包括了对这些数据结构的丰富操作. Redis常被称作是一款数据结构服务器(data structure server).

Git 学习笔记<简介与安装> (一)

Git,开源中国以及GitHub所使用的系统, Is A 一个分布式版本控制系统 Be Used to 为团队合作写代码提供方便的管理系统.几乎满足你所有关于合作写代码的幻想. Has 本地端:工作区.版本库 (版本库还含有一个暂存区) 远程仓库:版本库(用来储存版本库的服务器) How To Install Linux: 首先,先输入git,看看是否安装Git: $ gitThe program 'git' is currently not installed. You can install

Redis学习笔记——简介及配置

1. Redis简介 Redis概述 Redis是一个开源,先进的key-value存储,并用于构建高性能,可扩展的应用程序的完美解决方案.Redis从它的许多竞争继承来的三个主要特点:Redis数据库完全在内存中,使用磁盘仅用于持久性.相比许多键值数据存储,Redis拥有一套较为丰富的数据类型.Redis可以将数据复制到任意数量的从服务器. Redis 优势 异常快速:Redis的速度非常快,每秒能执行约11万集合,每秒约81000+条记录.支持丰富的数据类型:Redis支持字符串.列表.集合

Redis学习(一)安装并测试

转载请注明出处:jiq?钦's technical Blog  1.安装TCL包: 备注 -  TCL是一种流行的脚本语言,安装Redis需要有tcl支持: [[email protected]]# yum installtcl 2.解压下载的Redis压缩文件: [[email protected]]# cd /opt/redis/ [[email protected]]# tar xzf redis-3.0.1.tar.gz 3.编译并安装Redis: [[email protected]]

Redis 学习第一课:安装Linux Redis

对于分布式缓存,之前公司项目中只使用了MemCached,使用比较方便,有现成的C#版本组件. 如今用Redis的公司有很多,所以打算了解一下Redis. Redis的官网地址:http://redis.io Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言的API.从2010年3月15日起,Redis的开发工作由VMware主持.从2013年5月开始,Redis的开发由Pivotal赞助. Redis是一个key-

尚硅谷redis学习1-NOSQL简介2

NoSql数据模型简介 聚合模型:KV键值,BSON 列族: 图形,这里的图形不是指真正的图形,而是关系图 NoSql数据库的四大分类 KV键值:BerkeleyDB,Redis,tair,memcache 文档型数据库:couchDB,mongoDB 列存储数据库:Cassandra,HBase,分布式文件系统 图关系数据库:Neo4J,InfoGrid 对比: 分布式数据库的CAP+BASE 传统的ACID:A(atom icity):原子性 C(Consistency):一致性 I(Iso

【Redis】Redis学习笔记01_Redis的安装

使用版本为:redis-3.0.4       下载地址     http://www.redis.io/ 按顺序执行以下指令 tar -xzvf redis-3.0.4.tar.gz cd redis-3.0.4 make make install 启动redis redis-server redis.conf 测试redis是否启动成功 redis-cli set myname lizhuquan get myname 守护进程下关闭redis redis-cli shutdown

.NET中使用Redis之ServiceStack.Redis学习(一)安装与简单的运行

1.下载ServiceStack.Redis PM> Install-Package ServiceStack.Redis 2.vs中创建一个控制台程序 class Program { //构建Redis连接 static RedisClient redisClient = new RedisClient("127.0.0.1", 6379); static void Main(string[] args) { Console.WriteLine(string.Join(&quo

尚硅谷redis学习1-NOSQL简介

本系列是自己学习尚硅谷redis视频的记录,防止遗忘,供以后用到时快速回忆起来,照抄视频和资料而已,没什么技术含量,仅给自己入门了解,我是对着视频看一遍再写的,视频地址如下:尚硅谷Redis视频 背景:传统型数据库面临的问题 传统型数据库架构的演变 从最开始的单机一路进化到缓存加集群加分库分表主从读书分离,但即使这样还是有问题得不到解决 今天最终已经成为了这个样子 为什么用NoSql NoSql更适合大数据的处理 特点 传统数据库的NoSql的比较 RDBMS - 高度组织化结构化数据 - 结构