Node.js에서 Redis 사용하기

Node.js에서 Redis 사용하기

모듈 설치

$ npm install redis

API 레퍼런스

https://github.com/mranney/node_redis

프로그래밍

모듈 가져오기

var redis = require("redis");

서버에 접속하기

var client = redis.createClient(6379, "reshout.com");

Redis 명령어 실행하기

모든 Redis 명령어는 client 객체의 함수를 통해 실행할 수 있다. 모든 함수는 args 배열에 이어 callback을 전달 받는다.

두가지 형태로 호출할 수 있다.

client.mset(["test keys 1", "test val 1", "test keys 2", "test val 2"], function (err, res) {});

다른 형태는 다음과 같다.

client.mset("test keys 1", "test val 1", "test keys 2", "test val 2", function (err, res) {});

callback은 생략 가능하다.

client.set("some key", "some val");
client.set(["some other key", "some val"]);

기본으로 제공되는 redis.printcallback으로 사용하여 간단히 결과를 출력할 수 있다.

명령어에 해당하는 함수명은 대소문자 모두 사용 가능하다. client.get() 함수와 client.GET() 함수는 동일하다.

client.get("missingkey", function(err, reply) {
    // reply is null when the key is missing
    console.log(reply);
});

존재하지 않는 key에 대한 get() 함수의 결과로 null이 전달된다.

reply의 타입은 커맨드의 결과에 따라 아래와 같다.

  • single line: JavaScript String
  • integer: JavaScript Number
  • bulk: node Buffer
  • multi bulk: array of node Buffer

이벤트

client 객체는 상황에 따라 다음과 같은 이벤트를 발생(emit) 시킨다.

  • ready
  • connect
  • error
  • end
  • drain
  • idle

error 이벤트에 대한 리스너를 등록하지 않으면 에러가 발생했을때 프로그램이 종료된다.

예제

client.on("error", function (err) {
    console.log("Error " + err);
});

인증

Redis 서버가 인증을 요구하는 경우, client.auth(password, callback) 함수를 호출해 인증을 수행할 수 있다.

접속 종료

close() 함수를 호출해 강제로 접속을 종료할 수 있다. 명령어 실행에 따른 결과가 전달되기까지 기다리지 않고 즉시 접속을 종료하기 때문에 아래 코드는 아무것도 출력하지 않는다.

var redis = require("redis"),
    client = redis.createClient();

client.set("foo_rand000000000000", "some fantastic value");
client.get("foo_rand000000000000", function (err, reply) {
    console.log(reply.toString());
});
client.end();

Ubuntu에서 Redis 설치, 빌드, 실행

Ubuntu에서 Redis 설치, 빌드, 실행

다운로드

$ wget http://download.redis.io/releases/redis-2.8.4.tar.gz
$ tar xvzf redis-2.8.4.tar.gz
$ cd redis-2.8.4/

빌드

$ make
$ make test

설치

$ make install

바이너리 파일들이 /usr/local/bin에 설치된다. 시스템에 설치하지 않고 src 디렉토리에 위치한 바이너리를 사용해도 무방하다.

서버에서 정식으로 redis를 운영하고자 한다면 Ubuntu나 Debian 시스템에서 init script 설정을 도와주는 스크립트를 활용할 수 있다.

$ cd utils
$ ./install_server

이 스크립트는 몇가지 질문을 통해 Redis가 백그라운드에서 데몬으로 동작하며, 재부팅 되었을때 자동으로 실행되도록 설정하는데 도움을 준다.

Redis 서버 시작

기본 설정

$ cd src
$ ./redis-server

기본 설정은 6379포트를 사용함

설정 파일 활용

$ cd src
$ ./redis-server ../redis.conf

설정 파라미터 활용

$ cd src
$ ./redis-server --port 9999 --slaveof 127.0.0.1 6379
$ ./redis-server /etc/redis/6379.conf --loglevel debug

Redis 사용해 보기

서버를 시작한 후, redis-cli를 통해 Redis 서버에 명령을 보내고 답을 얻을 수 있다.

% cd src 
% ./redis-cli
redis> ping
PONG
redis> set foo bar 
OK  
redis> get foo 
"bar"
redis> incr mycounter
(integer) 1
redis> incr mycounter
(integer) 2
redis> 

Redis Tutorial

Redis Tutorial

http://try.redis.io

Key-Value

SET

SET server:name "fido"

GET

GET server:name

INCR

SET connections 10
INCR connections

DEL

DEL connections

EXPR

SET resource:lock "Redis Demo 1"
EXPIRE resource:lock 120
TTL resource:lock

List

RPUSH

RPUSH friends "Alice"
RPUSH friends "Bob"

LPUSH

LPUSH friends "Sam"

LRANGE

LRANGE friends 0 -1
LRANGE friends 1 2

A value of -1 for the second parameter means to retrieve elements until the end of the list.

LLEN

LLEN friends

LPOP

LPOP friends

RPOP

RPOP friends

Set

SADD

SADD superpowers "flight"

SREM

SREM superpowers "reflexes"

SISMEMBER

SISMEMBER tests if the given value is in the set.

SISMEMBER superpowers "flight"

SMEMBERS

SMEMBERS returns a list of all the members of this set.

SMEMBERS superpowers

SUNION

SUNION combines two or more sets and returns the list of all elements.

Sorted Set

ZADD

ZADD hackers 1940 "Alan Kay"
ZADD hackers 1906 "Grace Hopper"
ZADD hackers 1953 "Richard Stallman"
ZADD hackers 1965 "Yukihiro Matsumoto"
ZADD hackers 1916 "Claude Shannon"
ZADD hackers 1969 "Linus Torvalds"
ZADD hackers 1957 "Sophie Wilson"
ZADD hackers 1912 "Alan Turing"

ZRANGE

ZRANGE hackers 2 4

Hash

HSET

HSET user:1000 name "John Smith"
HSET user:1000 email "john.smith@example.com"
HSET user:1000 password "s3cret"

HGET

HGET user:1001 name

HGETALL

HGETALL user:1000

HMSET

HMSET user:1001 name "Mary Jones" password "hidden" email "mjones@example.com"