Redis学习笔记

Redis —— Remote Dictionary Service 远程字典服务

安装方式

  1.docker

#拉取redis
> docker pull redis
#运行redis 容器
> docker run --name myredis -d -p6379:6379 redis
#执行容器中的redis-cli,也可直接使用命令操作
> docker exec -it myredis redis-cli

  2.源码安装

# 下载源码
> git clone --branch 2.8 --depth 1 git@github.com:antirez/redis.git
> cd redis
# 编译
> make
> cd src
# 运行服务器,daemonize表示在后台运行
> ./redis-server --daemonize yes
# 运行命令行
> ./redis-cli...

  3.直接安装

# mac
> brew install redis
# ubuntu
> apt-get install redis
# redhat
> yum install redis
# 运行客户端
> redis-cli

  4.不安装,使用网页版 Web Redis 

 

posted @ 2018-08-16 09:02  慕尘  阅读(127)  评论(0编辑  收藏  举报