LoginSignup
3
2

More than 3 years have passed since last update.

MacにRedisをインストールする

Posted at

homebrewでredisをインストールする

brew install redis

起動する

redis-server /usr/local/etc/redis.conf

CLIに接続する

redis-cli

CLIで値をset

1127.0.0.1:6379> set key1 val1
OK

CLIで値をget

127.0.0.1:6379> get key1
"val1"
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2