backend

Install redis on mac osX

seul chan 2018. 4. 14. 15:32

You can download redis HERE.

Just download in redis site above, or using wget.

wget http://download.redis.io/releases/redis-4.0.9.tar.gz
tar xzf redis-4.0.9.tar.gz
cd redis-4.0.9
make

After make command done, just run redis with

src/redis-server

Then you can interact using redis-cli

src/redis-cli
127.0.0.1:6379> set foo bar
OK
127.0.0.1:6379> get foo
"bar"
127.0.0.1:6379>

Also, redis provide online tutorial. If new in redis, you can try this.



'backend' 카테고리의 다른 글

centos에서 uwsgi 설치 오류 해결 (the gcc failed with exit status 1)  (0) 2019.03.12
serverless 사용해보기  (0) 2019.02.15
TIL 문제풀이  (0) 2018.06.05
Mongodb install in mac OS X  (0) 2018.04.12
nosql: basic usage of OrientDB  (0) 2018.04.10