简介
Redis时一个开源的非关系数据库,支持持久化存储。
安装
Mac os x下安装Redis很简单通过Brew安装即可。
如果没有安装 Brew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
首先,获取最新软件安装包
brew update
安装Redis
brew install redis
结果:
==> Downloading https://homebrew.bintray.com/bottles/redis-3.0.7.yosemite.bottle
######################################################################## 100.0%
==> Pouring redis-3.0.7.yosemite.bottle.1.tar.gz
==> Caveats
To have launchd start redis at login:
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
Then to load redis now:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
Or, if you don't want/need launchctl, you can just run:
redis-server /usr/local/etc/redis.conf
==> Summary
/usr/local/Cellar/redis/3.0.7: 9 files, 876.3K
表示安装成功了。
那么怎么启动它呢?
启动
在终端直接运行命令
redis-server
Redis 默认端口是6379,你也可以换个端口号启动,
redis-server --port 6380
使用了肯定需要停止,停止怎么弄呢?
停止
执行命令
redis-cli shutdown