一、介绍
Redis(Remote Dictionary Server ),即远程字典服务,是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。
Redis 是一个高性能的key-value数据库。 redis的出现,很大程度补偿了memcached这类key/value存储的不足,在部 分场合可以对关系数据库起到很好的补充作用。它提供了Java,C/C++,C#,PHP,JavaScript,Perl,Object-C,Python,Ruby,Erlang等客户端,使用很方便。
二、下载Redis
1、redis官方Github网址:https://github.com/redis/redis/releases ,然后点击“ Assets”
2、在下载界面选择自己想要下载的版本,点击对应版本,下载Redis。
三、Redis的使用
1、安装Redis。
yum install -y nmap unzip wget lsof xz net-tools gcc make gcc-c++ wget http://download.redis.io/releases/redis-2.8.24.tar.gz tar zxvf redis-2.8.24.tar.gz cd redis-2.8.24 make mkdir -p /opt/redis/bin/ cp src/redis-benchmark /opt/redis/bin/ cp src/redis-check-aof /opt/redis/bin/ cp src/redis-check-dump /opt/redis/bin/ cp src/redis-cli /opt/redis/bin/ cp src/redis-sentinel /opt/redis/bin/ cp src/redis-server /opt/redis/bin/
2、容器Redis方法:
###redis容器启动命令 docker run --name some-redis -v /data/redis:/data --net=host -d redis:6.2.5-alpine3.14
3、安装Redis集群方法:
https://gitee.com/aqztcom/kjyw/tree/master/redis/redis_cluster