はじめてのredis
redisのjob queueを使いたかったんだけど、何もわからず立ち尽くしてしまったのでGW的に復習しようかと。
install redis on mac
いったんlocalでやってみよ
brew install redis
redis-server /usr/local/etc/redis.conf redis-server /usr/local/etc/redis.conf
2行で起動できる便利さ。待ち時間ゼロ。
Use local redis
違うterminalで実行
redis-cli
これだけ。redis-cliは brew install redis で一緒に入ります。
データ種類
あんま真面目に使ったことなかったのでどこまでdict型が入るのか確認ん。この記事によると5種類。
https://qiita.com/keinko/items/60c844bcf329bd3f4af8
- String型: key-value | "name" = "john"
- List型 : [1,1,2,2,3]
- Set型 : Sets | [1,2,3]
- Sorted set型 : いったんスルー
- Hash型 : Dictionary | dog = {"name": "Hachi", "age": 10}
STRING
127.0.0.1:6379> set a 1
OK
127.0.0.1:6379> get a
"1"
LIST
重複OK。POPで取り出せる。queueはこれでもいいっちゃいい。
RPUSHできっと右側に追加する。
127.0.0.1:6379> LPUSH mylist a
(integer) 1
127.0.0.1:6379> LPUSH mylist a <------重複
(integer) 2
127.0.0.1:6379> LPUSH mylist b
(integer) 3
127.0.0.1:6379> LPUSH mylist c
(integer) 4
127.0.0.1:6379> LPOP mylist
"c"
127.0.0.1:6379> LPOP mylist
"b"
127.0.0.1:6379> LPOP mylist
"a"
127.0.0.1:6379> LPOP mylist <------重複
"a"
127.0.0.1:6379> LPOP mylist
(nil)
SET
SETsというからには、重複が入らない
127.0.0.1:6379> SADD myset "a"
(integer) 1
127.0.0.1:6379> SADD myset "b"
(integer) 1
127.0.0.1:6379> SADD myset "c"
(integer) 1
127.0.0.1:6379> SADD myset "c" <------重複
(integer) 0
127.0.0.1:6379> SPOP myset
"a"
127.0.0.1:6379> SPOP myset
"c"
127.0.0.1:6379> SPOP myset
"b"
127.0.0.1:6379> SPOP myset <------重複なし
(nil)
127.0.0.1:6379>
HASH = HMSET
やっぱmongoか?感が少し漂う。
$ redis-cli
127.0.0.1:6379> HMSET john age 25 gender "male"
OK
127.0.0.1:6379> HMSET Kate age 33 gender "female"
OK
127.0.0.1:6379> HMGET john age
1) "25"
127.0.0.1:6379> HMGET john gender
1) "male"
127.0.0.1:6379> HMGET kate age <----- Case sensitive
1) (nil)
127.0.0.1:6379> HMGET Kate age
1) "33"
127.0.0.1:6379> HMGET Kate gender
1) "female"
HSETもあるらしい
https://redis.io/commands/hset
んーどうなんだろか。
Author And Source
この問題について(はじめてのredis), 我々は、より多くの情報をここで見つけました https://qiita.com/uturned0/items/24103ad8383db6e027ba著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .