#20 REDIS

#20.0 Introduction

์†๋„๊ฐ€ ๋น ๋ฅธ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค๋กœ ๋Œ€๋ถ€๋ถ„์˜ ๊ฒฝ์šฐ์— ๋‹ค๋ฅธ SQL ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์™€ ๊ฐ™์ด ์‚ฌ์šฉ

ํ‚ค-๊ฐ’ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค, In-Memory ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค๋กœ ๊ต‰์žฅํžˆ ๋น ๋ฅธ ์†๋„๋กœ ์ž‘๋™ํ•จ

but ๋ฉ”๋ชจ๋ฆฌ๋ฅผ ํ™œ์šฉํ•˜๊ธฐ์— ๋น„์šฉ์ด ๋งŽ์ด ๋“ฆ โ‡’ ๋‹ค๋ฅธ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ๋ณด์™„ํ•˜๋Š” ๋ฐฉ์‹์œผ๋กœ ํ™œ์šฉ

Redis๋Š” ์บ์‹ฑ ์šฉ๋„๋กœ ์‚ฌ์šฉ

#20.2 Strings

-- redis

SET hello world -- key > hello / value > world
GET hello -- world

SET hello bye
GET hello -- bye / ๊ฐ’ ์ˆ˜์ • ๊ฐ€๋Šฅ

SET users:1 SON
GET users:1 -- SON / ์œ ์ผํ‚ค
DEL users:1 
FLUSHALL -- ์ „๋ถ€ ์ง€์šฐ๊ธฐ

SET users:1 nico NX EX 10 -- ์ข…๋ฃŒ์ผ์ž ์ง€์ • ๊ฐ€๋Šฅ
GET users:1 -- 10์ดˆ๋งŒ ์ €์žฅํ•จ

SET users:1 nico XX -- ๊ฐ’์ด ์กด์žฌํ•  ๋•Œ, users:1์˜ ๊ฐ’์œผ๋กœ nico ๋„ฃ์„ ์ˆ˜ ์žˆ๋‹ค๋Š” ์˜๋ฏธ

MSET users:1 SON users:2 CHA users:3 PARK
MGET users:1 users:2 users:3 -- 1) SON 2) CHA 3) PARK

SET visitors 0
INCR visiters // ์ˆซ์ž up
DECR visitors // ์ˆซ์ž down
INCRBY visitors 10 // 10์”ฉ up
DECRBY visitors 10 // 10์”ฉ down

#20.3 Lists

4,294,967,295 ๊นŒ์ง€ ์ €์žฅ ๊ฐ€๋Šฅ

LPUSH l 1 -- LPUSH ๋ฆฌ์ŠคํŠธ ์™ผ์ชฝ์— ๊ฐ’์„ ์ถ”๊ฐ€
LRANGE l 0 -1 -- LRANGE ๋ฆฌ์ŠคํŠธ ์™ผ์ชฝ๋ถ€ํ„ฐ

RPUSH l 0

LPOP l -- ๋ฆฌ์ŠคํŠธ ์™ผ์ชฝ ๊ฐ’ 1๊ฐœ ์ œ๊ฑฐ
RPOP l

...

#20.4 Sets

์ค‘๋ณต๋œ ๊ฐ’ ํ—ˆ์šฉ x

SADD votes:song:1 user:1
SADD votes:song:1 user:2
SADD votes:song:1 user:3

SADD votes:song:1 user:2 -- ์‹คํŒจ, ๋™์ผํ•œ ๊ฐ’

SMEMBERS votes:song:1 -- 1) user:1 2) user:2 3) user:3

SISMEMBER votes:song:1 user:1 -- 1
SISMEMBER votes:song:1 user:4 -- 0

SCARD votes:song:1 -- 2

SADD votes:song:2 user:3 user:4 user:5
SMEMBERS votes:song:2 -- 1) user:3 2) user:4 3) user:5

SINTER votes:song:1 votes:song:2 -- user:3 1๊ณผ 2์— ํˆฌํ‘œํ•œ ์‚ฌ๋žŒ
SDIFF votes:song:1 votes:song:2 -- user:1 user:2

SUNION votes:song:1 votes:song:2 -- user:1 user:2... user:5

SREM votes:song:1 user:1 -- delete

...

#20.5 Hashes

key์™€ value์˜ ์Œ 

HSET player:1 name son xp 0 health 100
HGET player:1 name -- son
HGETALL player:1 -- name son xp 0 health 100

HINCRBY player:1 xp 10
HGET player:1 xp -- xp 10

HINCRBY player:1 health -10
HGET player:1 health -- health 90

HMGET player:1 xp health -- 10 90

HSET player:1 name park
HGET player:1 name -- name park

HEXISTS player:1 xp -- 1

#20.6 Sorted Sets

ZADD scores 1 user:1 2 user:2 10 user:3 6: user:4
ZRANGE scores 0 -1 -- user:1 user:2 user:4 user:3
ZRANGE scores 0 -1 WITHSCORES -- user:1 1 user:2 2 user:4 6 user:3 10
ZREVRANGE scores 0 -1 -- user:3 user:4 user:2 user:1

ZRANK scores user:1 -- 0
ZRANK scores user:3 -- 3

ZADD scores 20 user:1
ZREVRANGE scores 0 -1 WITHSCORES -- user:1 20 user:3 10 user:4 6 user:2 2

ZINCRBY scores 1 user:2
ZSCORE scores user:1 -- 20

ZRANGEBYSCORE scores 7 50 -- user:2 user:3 user:1

ZCOUNT scores 10 inf -- 2

ZREM scores user:2 -- del

Last updated

Was this helpful?