Mac 安装 Redis

1). Redis 官网
2). 安装
  • 将安装包拷贝到/usr/local/路径下
# 解压
sudo tar zxvf redis-5.0.5.tar.gz
# 编译测试
sudo make test
# 安装
sudo make install
3). 测试
  • 默认端口 : 6379

  • 开启服务

redis-server
  • 测试 redis
# 存储数据
127.0.0.1:6379> set name mazaiting
# 取出数据
127.0.0.1:6379> get name
"mazaiting"

你可能感兴趣的:(Mac 安装 Redis)