发布网友 发布时间:2022-04-21 21:34
共2个回答
懂视网 时间:2022-04-29 20:33
下面由Redis教程栏目给大家介绍通过Homebrew安装配置Redis,希望对需要的朋友有所帮助!
背景
通过 Homebrew (https://brew.sh/), 在本地机器上安装&配置 Redis
安装 Redis
$ brew install redis
Redis 相关配置
电脑开机时, 启动 Redis
$ ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
通过 "launchctl" 启动 Redis
$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
以指定配置文件启动 Redis
$ redis-server /usr/local/etc/redis.conf
停止当前加载的 Agent
$ launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
默认配置文件的位置
cat /usr/local/etc/redis.conf
卸载 Redis 和相关配置
$ brew uninstall redis $ rm ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
获取 Redis 相关信息
$ brew info redis
校验 Redis 是否运行
$ redis-cli ping
如果正常运行, 响应 PONG
热心网友 时间:2022-04-29 17:41
安装使用
1、安装操作命令
port install redis
2、运行redis命令
redis-server /opt/local/etc/redis.conf
3、查看是否按照成功、使用使用缓存操作。
1
2
3
4
5
6
7
8
9
10
11
12
Holele-Book-Pro:~ user$ redis-cli
redis 127.0.0.1:6379> ping
PONG
redis 127.0.0.1:6379> set mykey somevalue
OK
redis 127.0.0.1:6379> get mykey
"somevalue"
redis 127.0.0.1:6379> del mykey
(integer) 1
redis 127.0.0.1:6379> get mykey
(nil)
redis 127.0.0.1:6379>