zsh: command not found : nest 에러


Mac OS에서 Redis 설치


brew install redis # redis 설치 using homebrew

brew services start redis # redis 서버 시작 in background service (기본 포트인 6379에서 대기중)
#redis-server # redis 서버 시작 but manually (백그라운드로 실행되지 않고 터미널 세션에 바인딩...된다고 함)

# redis 작동 확인 
redis-cli
set test 'testing...'
get test # key로 조회 # testing... 이 출력됨

brew services stop redis # redis 서버 중지
brew services restart redis # redis 서버 재시작

https://redis.io/docs/install/

Redis & Redlock을 사용한 동시성 처리