대용량 플랫폼
[박혜웅] Install Redis on Linux
BAGE
2011. 2. 25. 16:23
너무 간단해서, http://redis.io/download에 있는 내용만 복사한다.
1. 설치
curl -O http://redis.googlecode.com/files/redis-2.4.8.tar.gz
tar xzf redis-2.4.8.tar.gz
ln -s redis-2.4.8 redis
cd redis
make
2. 서버 구동
./redis-server
3. 클라이언트로 접속
./redis-cli
3-1. set/get 테스트
redis> set foo bar
OK
redis> get foo
"bar"