数据库
首页 > 数据库> > Redis5.0 浅析

Redis5.0 浅析

作者:互联网

一、Redis概念

Redis是一个开源的使用C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库。

Redis 支持多种类型的数据结构,如 字符串(strings), 散列(hashes), 列表(lists), 集合(sets), 有序集合(sorted sets) 与范围查询, bitmaps, hyperloglogs 和 地理空间(geospatial) 索引半径查询。

Redis应用场景:

 

二、安装redis

Centos版本:7.8

Redis版本:5.0

官网下载地址:http://download.redis.io/releases/redis-5.0.0.tar.gz

yum install gcc-c++
cd /opt
tar -zxvf redis-5.0.0.tar.gz
cd redis-5.0.0/
make
make install PREFIX=/opt/redis
mkdir -p /opt/redis/conf
cp /opt/redis-5.0.0/redis.conf /opt/redis/conf
vi /opt/redis/conf/redis.conf
--------------------------
bind 192.168.100.11
port 8080
daemonize yes
protected-mode no
requirepass 123456    # 设置密码
--------------------------
bin/redis-server conf/redis.conf	# 启动redis
bin/redis-cli shutdown				# 关闭redis
ps -ef|grep redis					# 查看进程
# 链接redis
bin/redis-cli -h 192.168.100.11 -p 8080 -a 123456
192.168.100.11:8080> info

 

三、Redis常用命令

# 设置key-value
bin/redis-cli -h 192.168.100.11 -p 8080 -a 123456 set "abc" "123456"

# 查看key
bin/redis-cli -h 192.168.100.11 -p 8080 -a 123456 get "abc"

# 查看key是否存在
bin/redis-cli -h 192.168.100.11 -p 8080 -a 123456 keys "abc"
bin/redis-cli -h 192.168.100.11 -p 8080 -a 123456 exists "abc"

# 删除key
bin/redis-cli -h 192.168.100.11 -p 8080 -a 123456 del "abc"

 

 

 

 

 

 

标签:bin,8080,redis,100.11,192.168,Redis5.0,123456,浅析
来源: https://blog.csdn.net/linwenhai2018/article/details/109764446