Redisを5分間だけ触ってみた
Redis
前から気になる存在だったので5分だけ触ってみた。思っていたよりもあっけなかった。
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 5.0.7 (00000000/0) 64 bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 12730
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'
Redisの基礎知識
- KVS
- インメモリ
- デフォルトで16個のデータベースを持っていて、それぞれ0~15のindexが割り当てられている
Redisサーバ立ち上げ
$ redis-server /usr/local/etc/redis.conf
Redisクライアント立ち上げ
# -nでデータベースの番号指定
$ redis-cli -n 1
あるいは$redis-cli
でredisコンソールに入りSELECT 1
でも良い。
Redisでpub/sub
# あるターミナルのタブにてsubscribe
$ redis-cli
127.0.0.1:6379> subscribe my_channel
1) "subscribe"
2) "my_channel"
3) (integer) 1
1) "message" # 受け取った
2) "my_channel" # 受け取った
3) "hello" # 受け取った
# 別のタブにてpublish
$ redis-cli
127.0.0.1:6379> publish my_channel 'hello'
Author And Source
この問題について(Redisを5分間だけ触ってみた), 我々は、より多くの情報をここで見つけました https://qiita.com/kudojp/items/c9a65924f8adf47172a4著者帰属:元の著者の情報は、元の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 .